using JNPF.Common.Contracts; using SqlSugar; namespace JNPF.Extend.Entitys.Entity; /// /// 客户信息. /// [SugarTable("ext_customer", TableDescription = "客户信息")] public class ProductCustomerEntity : CLEntityBase { /// /// 编码. /// [SugarColumn(ColumnName = "F_Code")] public string Code { get; set; } /// /// 客户名称. /// [SugarColumn(ColumnName = "F_CustomerName")] public string Customername { get; set; } /// /// 地址. /// [SugarColumn(ColumnName = "F_Address")] public string Address { get; set; } /// /// 名称. /// [SugarColumn(ColumnName = "F_Name")] public string Name { get; set; } /// /// 联系方式. /// [SugarColumn(ColumnName = "F_ContactTel")] public string ContactTel { get; set; } /// /// 删除标志. /// [SugarColumn(ColumnName = "F_DeleteMark")] public float Deletemark { get; set; } /// /// 删除时间. /// [SugarColumn(ColumnName = "F_DeleteTime")] public DateTime Deletetime { get; set; } /// /// 删除用户. /// [SugarColumn(ColumnName = "F_DeleteUserId")] public string Deleteuserid { get; set; } }