移动系统liao
2024-05-29 71e821ab5e6b3014fac9b691d6957bcc09704b70
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
using Chuanyin.Attribute;
using CoreCms.Net.Model.Entities.baseModel;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace CoreCms.Net.Model.Entities.baifenbingfa.Promote
{
    /// <summary>
    /// 推广合作博主信息
    /// </summary>
    [Display(Name = "推广博主信息")]
    [SugarTable( TableDescription = "推广博主")]
    //[SqlCodeFirst]
    public partial class bloggersInfo: BFBaseModel
    {
        /// <summary>
        /// id
        /// </summary>
        [SugarColumn(ColumnDescription ="id",IsIdentity =true,IsPrimaryKey =true)]
        public int id { get; set; }
 
        /// <summary>
        /// 入住平台
        /// </summary>        
        [Display(Name = "入住平台")]
        [SugarColumn(ColumnDescription = "入住平台",Length =100)]
        public string platforms { get; set; }
        /// <summary>
        /// 姓名
        /// </summary>    
        [Display(Name = "姓名")]
        [SugarColumn(ColumnDescription = "姓名", Length = 100, IsNullable = true)]
        public string name { get; set; }
 
        /// <summary>
        /// 网名
        /// </summary>        
        [Display(Name = "网名")]
        [SugarColumn(ColumnDescription = "网名", Length = 100)]
        public string nickname { get; set; }
        /// <summary>
        /// 电话号码
        /// </summary>        
        [Display(Name = "电话号码")]
        [SugarColumn(ColumnDescription = "电话号码", Length = 100, IsNullable = true)]
        public string phone { get; set; }
        /// <summary>
        /// 粉丝数量
        /// </summary>        
        [Display(Name = "粉丝数量")]
        [SugarColumn(ColumnDescription = "粉丝数量",SqlParameterDbType = "decimal(12,4)",DefaultValue ="0.00")]
        public decimal  followersCount { get; set; }
 
        /// <summary>
        /// 微信号
        /// </summary>    
        [Display(Name = "微信号")]
        [SugarColumn(ColumnDescription = "微信号", Length = 100, IsNullable = true)]
        public string weiXin { get; set; }
 
        /// <summary>
        /// 行政区域
        /// </summary>    
        [Display(Name = "行政区域")]
        [SugarColumn(ColumnDescription = "行政区域,用,号分割", Length = 100, IsNullable = true)]
        public string areaCode { get; set; }
        /// <summary>
        /// 详细地址
        /// </summary>    
        [Display(Name = "详细地址")]
        [SugarColumn(ColumnDescription = "详细地址", IsNullable = true)]
        public string address { get; set; }
        /// <summary>
        /// 推广费用
        /// </summary>    
        [Display(Name = "推广费用")]
        [SugarColumn(ColumnDescription = "推广费用")]
        public decimal PromoteMoney { get; set; }
 
        /// <summary>
        /// 合作意向
        /// </summary>    
        [Display(Name = "合作意向")]
        [SugarColumn(ColumnDescription = "合作意向")]
        public string intentionDec { get; set; }
 
        /// <summary>
        /// 运营经理
        /// </summary>    
        [Display(Name = "运营经理")]
        [SugarColumn(ColumnDescription = "运营经理", IsNullable = true)]
        public string mangerName { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>    
        [Display(Name = "备注")]
        [SugarColumn(ColumnDescription = "备注",IsNullable =true)]
        public string reMaker { get; set; }
    }
}