123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
-
- namespace OASystem.Domain.Entities.Customer
- {
-
-
-
- [SugarTable("Crm_CustomerCompany")]
- public class Crm_CustomerCompany:EntityBase
- {
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(40)")]
- public string? CompanyAbbreviation { get; set; }
-
-
-
-
- [SugarColumn(IsNullable =true,ColumnDataType = "varchar(80)")]
- public string? CompanyFullName { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
- public string? Address { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(80)")]
- public string? PostCodes { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int LastedOpUserId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
- public DateTime LastedOpDt { get; set; } = DateTime.Now;
- }
- }
|