| | |
| | | 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 = "姓名", Length = 100)] |
| | | [SugarColumn(ColumnDescription = "姓名", Length = 100, IsNullable = true)] |
| | | public string name { get; set; } |
| | | |
| | | /// <summary> |
| | |
| | | /// 电话号码 |
| | | /// </summary> |
| | | [Display(Name = "电话号码")] |
| | | [SugarColumn(ColumnDescription = "电话号码", Length = 100)] |
| | | [SugarColumn(ColumnDescription = "电话号码", Length = 100, IsNullable = true)] |
| | | public string phone { get; set; } |
| | | /// <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> |
| | | /// 微信号 |
| | | /// </summary> |
| | | [Display(Name = "微信号")] |
| | | [SugarColumn(ColumnDescription = "微信号", Length = 100)] |
| | | [SugarColumn(ColumnDescription = "微信号", Length = 100, IsNullable = true)] |
| | | public string weiXin { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 行政区域 |
| | | /// </summary> |
| | | [Display(Name = "行政区域")] |
| | | [SugarColumn(ColumnDescription = "行政区域,用,号分割", Length = 100)] |
| | | [SugarColumn(ColumnDescription = "行政区域,用,号分割", Length = 100, IsNullable = true)] |
| | | public string areaCode { get; set; } |
| | | /// <summary> |
| | | /// 详细地址 |
| | | /// </summary> |
| | | [Display(Name = "详细地址")] |
| | | [SugarColumn(ColumnDescription = "详细地址")] |
| | | [SugarColumn(ColumnDescription = "详细地址", IsNullable = true)] |
| | | public string address { get; set; } |
| | | /// <summary> |
| | | /// 推广费用 |
| | |
| | | /// 运营经理 |
| | | /// </summary> |
| | | [Display(Name = "运营经理")] |
| | | [SugarColumn(ColumnDescription = "运营经理")] |
| | | [SugarColumn(ColumnDescription = "运营经理", IsNullable = true)] |
| | | public string mangerName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 备注 |
| | | /// </summary> |
| | | [Display(Name = "备注")] |
| | | [SugarColumn(ColumnDescription = "备注",IsNullable =true)] |
| | | public string reMaker { get; set; } |
| | | } |
| | | } |