liaoxujun@qq.com
2024-04-10 25bad9a765c608079258012766a37a571b5243aa
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
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.OffLineDistributor
{
    /// <summary>
    /// 线下经销商
    /// </summary>
    [Display(Name = "线下经销商采集")]
    [SugarTable(TableDescription = "线下经销商采集")]
    [SqlCodeFirst]
    public partial class  OfflineDistributor: BFBaseModel
    {
        /// <summary>
        /// 主键ID,自增长
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键ID")]
        public int Id { get; set; }
 
        /// <summary>
        /// 信息收集时间
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "信息收集时间")]
        public DateTime CollectionTime { get; set; } = DateTime.Now;
 
        /// <summary>
        /// 区域信息
        /// </summary>     
        [SugarColumn(IsNullable = true, ColumnDescription = "区域信息")]
        public string Region { get; set; }
        /// <summary>
        /// 详细地址
        /// </summary>     
        [SugarColumn(IsNullable = true, ColumnDescription = "详细地址")]
        public string Adder { get; set; }
 
        /// <summary>
        /// 类别
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "类别")]
        public string Category { get; set; }
 
        /// <summary>
        /// 学校名称(若适用)
        /// </summary>
 
        [SugarColumn(IsNullable = true, ColumnDescription = "学校名称")]
        public string School { get; set; }
 
        /// <summary>
        /// 经销商名称
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "经销商名称")]
        public string DealerName { get; set; }
 
        /// <summary>
        /// 联系人姓名
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "联系人姓名")]
        public string ContactPerson { get; set; }
 
        /// <summary>
        /// 联系电话
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "联系电话")]
        public string PhoneNumber { get; set; }
 
        /// <summary>
        /// 店招图片地址
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "店招图片地址",Length =65535)]
        public string StoreLogoUrl { get; set; }
 
        /// <summary>
        /// 合作意向描述
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "合作意向描述")]
        public string CooperationIntent { get; set; }
 
        /// <summary>
        /// 业务经理姓名
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "业务经理姓名")]
        public string BusinessManager { get; set; }
 
        /// <summary>
        /// 洽谈记录
        /// <summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "洽谈记录")]
        public string NegotiationRecord { get; set; }
 
 
        /// <summary>
        /// 关联用户ID
        /// <summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "关联用户ID")]
        public int?  UserID { get; set; }
 
        /// <summary>
        /// 收集人ID
        /// <summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "收集人ID")]
        public int?  PUserID { get; set; }
        /// <summary>
        /// 备注
        /// <summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "备注")]
        public string Remake { get; set; }
        /// <summary>
        /// 是否合作
        /// <summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "是否合作", DefaultValue = "0")]
        public bool IsMeeting { get; set; } = false;
 
 
    }
}