移动系统liao
2025-05-01 a247547df86f0fad8f03aebb91de68d3f2bc7918
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace Models
{
    /// <summary>
    /// 办公系统合作客户通讯表
    ///</summary>
    [SugarTable("OA_CustomerCommunications")]
    public class OA_CustomerCommunications
    {
        
     
        /// <summary>
        /// 备  注:合作客户唯一编号
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="Keyid" ,IsPrimaryKey = true) ]
        public Guid Keyid  { get; set;  } 
     
        /// <summary>
        /// 备  注:省
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="Province" ) ]
        public string Province  { get; set;  } = null!;
     
        /// <summary>
        /// 备  注:市
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="City" ) ]
        public string City  { get; set;  } = null!;
     
        /// <summary>
        /// 备  注:区
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="County" ) ]
        public string County  { get; set;  } = null!;
     
        /// <summary>
        /// 备  注:详细地址
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="DetailedAddress" ) ]
        public string DetailedAddress  { get; set;  } = null!;
     
        /// <summary>
        /// 备  注:邮编
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="Postcode" ) ]
        public string? Postcode  { get; set;  } 
     
        /// <summary>
        /// 备  注:电话
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="CompanyPhone" ) ]
        public string? CompanyPhone  { get; set;  } 
     
        /// <summary>
        /// 备  注:短信
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="Mobile" ) ]
        public string? Mobile  { get; set;  } 
     
        /// <summary>
        /// 备  注:email
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="Email" ) ]
        public string? Email  { get; set;  } 
     
        /// <summary>
        /// 备  注:QQ
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="QQ" ) ]
        public string? QQ  { get; set;  } 
     
        /// <summary>
        /// 备  注:传真
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="Fax" ) ]
        public string? Fax  { get; set;  } 
     
        /// <summary>
        /// 备  注:法人代表
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="LegalRepresentative" ) ]
        public string? LegalRepresentative  { get; set;  } 
     
        /// <summary>
        /// 备  注:代表手机
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="LegalMobile" ) ]
        public string? LegalMobile  { get; set;  } 
     
        /// <summary>
        /// 备  注:代表QQ
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="LegalQQ" ) ]
        public string? LegalQQ  { get; set;  } 
     
        /// <summary>
        /// 备  注:业务经办人
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="BusinessManagers" ) ]
        public string? BusinessManagers  { get; set;  } 
     
        /// <summary>
        /// 备  注:经办人手机
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="ManagersMobile" ) ]
        public string? ManagersMobile  { get; set;  } 
     
        /// <summary>
        /// 备  注:经办人QQ
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="ManagersQQ" ) ]
        public string? ManagersQQ  { get; set;  } 
     
        /// <summary>
        /// 备  注:财务负责人
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="FinancialOfficers" ) ]
        public string? FinancialOfficers  { get; set;  } 
     
        /// <summary>
        /// 备  注:负责人手机
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="OfficersMobile" ) ]
        public string? OfficersMobile  { get; set;  } 
     
        /// <summary>
        /// 备  注:负责人QQ
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="OfficersQQ" ) ]
        public string? OfficersQQ  { get; set;  } 
     
        /// <summary>
        /// 备  注:最后修改时间
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="LastUpdateTime" ) ]
        public DateTime LastUpdateTime  { get; set;  } 
     
        /// <summary>
        /// 备  注:操作人
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="Operator" ) ]
        public string Operator  { get; set;  } = null!;
     
        /// <summary>
        /// 备  注:备注
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="Remark" ) ]
        public string? Remark  { get; set;  } 
    
 
    }
    
}