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