namespace OASystem.Domain.Entities.System { /// /// 公司表 /// [SugarTable("Sys_Company")] public class Sys_Company : EntityBase { /// /// 公司Code /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")] public string CompanyCode { get; set; } /// /// 公司名称 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string CompanyName { get; set; } /// /// 公司所在地 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")] public string Address { get; set; } /// /// 负责人Id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int ContactUserId { get; set; } /// /// 联系方式 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(30)")] public string Tel { get; set; } /// /// 父级公司Id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int ParentCompanyId { get; set; } } }