using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace Models { /// /// 办公系统合作客户通讯表 /// [SugarTable("OA_CustomerCommunications")] public class OA_CustomerCommunications { /// /// 备 注:合作客户唯一编号 /// 默认值: /// [SugarColumn(ColumnName="Keyid" ,IsPrimaryKey = true) ] public Guid Keyid { get; set; } /// /// 备 注:省 /// 默认值: /// [SugarColumn(ColumnName="Province" ) ] public string Province { get; set; } = null!; /// /// 备 注:市 /// 默认值: /// [SugarColumn(ColumnName="City" ) ] public string City { get; set; } = null!; /// /// 备 注:区 /// 默认值: /// [SugarColumn(ColumnName="County" ) ] public string County { get; set; } = null!; /// /// 备 注:详细地址 /// 默认值: /// [SugarColumn(ColumnName="DetailedAddress" ) ] public string DetailedAddress { get; set; } = null!; /// /// 备 注:邮编 /// 默认值: /// [SugarColumn(ColumnName="Postcode" ) ] public string? Postcode { get; set; } /// /// 备 注:电话 /// 默认值: /// [SugarColumn(ColumnName="CompanyPhone" ) ] public string? CompanyPhone { get; set; } /// /// 备 注:短信 /// 默认值: /// [SugarColumn(ColumnName="Mobile" ) ] public string? Mobile { get; set; } /// /// 备 注:email /// 默认值: /// [SugarColumn(ColumnName="Email" ) ] public string? Email { get; set; } /// /// 备 注:QQ /// 默认值: /// [SugarColumn(ColumnName="QQ" ) ] public string? QQ { get; set; } /// /// 备 注:传真 /// 默认值: /// [SugarColumn(ColumnName="Fax" ) ] public string? Fax { get; set; } /// /// 备 注:法人代表 /// 默认值: /// [SugarColumn(ColumnName="LegalRepresentative" ) ] public string? LegalRepresentative { get; set; } /// /// 备 注:代表手机 /// 默认值: /// [SugarColumn(ColumnName="LegalMobile" ) ] public string? LegalMobile { get; set; } /// /// 备 注:代表QQ /// 默认值: /// [SugarColumn(ColumnName="LegalQQ" ) ] public string? LegalQQ { get; set; } /// /// 备 注:业务经办人 /// 默认值: /// [SugarColumn(ColumnName="BusinessManagers" ) ] public string? BusinessManagers { get; set; } /// /// 备 注:经办人手机 /// 默认值: /// [SugarColumn(ColumnName="ManagersMobile" ) ] public string? ManagersMobile { get; set; } /// /// 备 注:经办人QQ /// 默认值: /// [SugarColumn(ColumnName="ManagersQQ" ) ] public string? ManagersQQ { get; set; } /// /// 备 注:财务负责人 /// 默认值: /// [SugarColumn(ColumnName="FinancialOfficers" ) ] public string? FinancialOfficers { get; set; } /// /// 备 注:负责人手机 /// 默认值: /// [SugarColumn(ColumnName="OfficersMobile" ) ] public string? OfficersMobile { get; set; } /// /// 备 注:负责人QQ /// 默认值: /// [SugarColumn(ColumnName="OfficersQQ" ) ] public string? OfficersQQ { get; set; } /// /// 备 注:最后修改时间 /// 默认值: /// [SugarColumn(ColumnName="LastUpdateTime" ) ] public DateTime LastUpdateTime { get; set; } /// /// 备 注:操作人 /// 默认值: /// [SugarColumn(ColumnName="Operator" ) ] public string Operator { get; set; } = null!; /// /// 备 注:备注 /// 默认值: /// [SugarColumn(ColumnName="Remark" ) ] public string? Remark { get; set; } } }