using Chuanyin.Attribute; using CoreCms.Net.Model.Entities.baseModel; using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CoreCms.Net.Model.Entities.baifenbingfa.Promote { /// /// 推广合作博主信息 /// [Display(Name = "推广博主信息")] [SugarTable( TableDescription = "推广博主")] [SqlCodeFirst] public partial class bloggersInfo: BFBaseModel { /// /// id /// [SugarColumn(ColumnDescription ="id",IsIdentity =true,IsPrimaryKey =true)] public int id { get; set; } /// /// 入住平台 /// [Display(Name = "入住平台")] [SugarColumn(ColumnDescription = "入住平台",Length =100)] public string platforms { get; set; } /// /// 姓名 /// [Display(Name = "姓名")] [SugarColumn(ColumnDescription = "姓名", Length = 100)] public string name { get; set; } /// /// 网名 /// [Display(Name = "网名")] [SugarColumn(ColumnDescription = "网名", Length = 100)] public string nickname { get; set; } /// /// 电话号码 /// [Display(Name = "电话号码")] [SugarColumn(ColumnDescription = "电话号码", Length = 100)] public string phone { get; set; } /// /// 粉丝数量 /// [Display(Name = "粉丝数量")] [SugarColumn(ColumnDescription = "粉丝数量")] public int followersCount { get; set; } /// /// 微信号 /// [Display(Name = "微信号")] [SugarColumn(ColumnDescription = "微信号", Length = 100)] public string weiXin { get; set; } /// /// 行政区域 /// [Display(Name = "行政区域")] [SugarColumn(ColumnDescription = "行政区域,用,号分割", Length = 100)] public string areaCode { get; set; } /// /// 详细地址 /// [Display(Name = "详细地址")] [SugarColumn(ColumnDescription = "详细地址")] public string address { get; set; } /// /// 推广费用 /// [Display(Name = "推广费用")] [SugarColumn(ColumnDescription = "推广费用")] public decimal PromoteMoney { get; set; } /// /// 合作意向 /// [Display(Name = "合作意向")] [SugarColumn(ColumnDescription = "合作意向")] public string intentionDec { get; set; } /// /// 运营经理 /// [Display(Name = "运营经理")] [SugarColumn(ColumnDescription = "运营经理")] public string mangerName { get; set; } /// /// 备注 /// [Display(Name = "备注")] [SugarColumn(ColumnDescription = "备注",IsNullable =true)] public string reMaker { get; set; } } }