| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- namespace Admin.NET.Plugin.AiDOP.Entity.S0.Sales;
- [SugarTable("S0ContractReviewCycle", "合同评审周期标准")]
- [SugarIndex("uk_S0ContractReviewCycle_factory_stage",
- nameof(FactoryRefId), OrderByType.Asc,
- nameof(StageCode), OrderByType.Asc,
- IsUnique = true)]
- public class AdoS0ContractReviewCycle
- {
- [SugarColumn(ColumnName = "rec_id", IsPrimaryKey = true, IsIdentity = true, ColumnDataType = "bigint")]
- public long Id { get; set; }
- [SugarColumn(ColumnName = "company_ref_id", ColumnDataType = "bigint")]
- public long CompanyRefId { get; set; }
- [SugarColumn(ColumnName = "factory_ref_id", ColumnDataType = "bigint")]
- public long FactoryRefId { get; set; }
- [SugarColumn(ColumnName = "domain_code", Length = 50, IsNullable = true)]
- public string? DomainCode { get; set; }
- [SugarColumn(ColumnName = "stage_code", Length = 50)]
- public string StageCode { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "stage_name", Length = 200)]
- public string StageName { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "std_hours")]
- public int StdHours { get; set; }
- [SugarColumn(ColumnName = "order_no")]
- public int OrderNo { get; set; }
- [SugarColumn(ColumnName = "is_active", ColumnDataType = "boolean")]
- public bool IsActive { get; set; } = true;
- [SugarColumn(ColumnName = "create_user", Length = 100, IsNullable = true)]
- public string? CreateUser { get; set; }
- [SugarColumn(ColumnName = "create_time")]
- public DateTime CreateTime { get; set; } = DateTime.Now;
- [SugarColumn(ColumnName = "update_user", Length = 100, IsNullable = true)]
- public string? UpdateUser { get; set; }
- [SugarColumn(ColumnName = "update_time", IsNullable = true)]
- public DateTime? UpdateTime { get; set; }
- }
|