|
@@ -0,0 +1,42 @@
|
|
|
+namespace OASystem.Domain.Entities.System
|
|
|
+{
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarTable("Sys_Company")]
|
|
|
+ public class Sys_Company: EntityBase
|
|
|
+ {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [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; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable =false)]
|
|
|
+ public int ContactUserId { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable =false,Length =30)]
|
|
|
+ public string Tel { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable =false)]
|
|
|
+ public int ParentCompanyId { get; set; }
|
|
|
+ }
|
|
|
+
|
|
|
+}
|