| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.Data; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | |
| | | /// </summary> |
| | | [Display(Name = "推广博主信息")] |
| | | [SugarTable( TableDescription = "推广博主")] |
| | | [SqlCodeFirst] |
| | | //[SqlCodeFirst] |
| | | public partial class bloggersInfo: BFBaseModel |
| | | { |
| | | /// <summary> |
| | |
| | | /// 粉丝数量 |
| | | /// </summary> |
| | | [Display(Name = "粉丝数量")] |
| | | [SugarColumn(ColumnDescription = "粉丝数量")] |
| | | public int followersCount { get; set; } |
| | | [SugarColumn(ColumnDescription = "粉丝数量",SqlParameterDbType = "decimal(12,4)",DefaultValue ="0.00")] |
| | | public decimal followersCount { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 微信号 |