| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- namespace Admin.NET.Plugin.AiDOP.Order;
- /// <summary>浜у搧璁捐涓昏〃</summary>
- [SugarTable("ado_product_design", "浜у搧璁捐涓昏〃")]
- public class ProductDesign
- {
- [SugarColumn(ColumnName = "Id", IsPrimaryKey = true, IsIdentity = false)]
- public long Id { get; set; }
- /// <summary>鍗曟嵁缂栧彿锛圥DyyyyMMxxxx锛?/summary>
- [SugarColumn(ColumnName = "BillNo", Length = 64)]
- public string BillNo { get; set; } = string.Empty;
- /// <summary>鍚堝悓鍙?/summary>
- [SugarColumn(ColumnName = "ContractNo", Length = 128, IsNullable = true)]
- public string? ContractNo { get; set; }
- /// <summary>1=甯歌浜у搧 2=闈炴爣浜у搧</summary>
- [SugarColumn(ColumnName = "ProductKind")]
- public int ProductKind { get; set; } = 1;
- [SugarColumn(ColumnName = "DesignLeadAccount", Length = 64, IsNullable = true)]
- public string? DesignLeadAccount { get; set; }
- [SugarColumn(ColumnName = "DesignLeadName", Length = 64, IsNullable = true)]
- public string? DesignLeadName { get; set; }
- /// <summary>鍥惧彿</summary>
- [SugarColumn(ColumnName = "DrawingNo", Length = 128, IsNullable = true)]
- public string? DrawingNo { get; set; }
- [SugarColumn(ColumnName = "DrawingPlanStart", IsNullable = true)]
- public DateTime? DrawingPlanStart { get; set; }
- [SugarColumn(ColumnName = "DrawingPlanEnd", IsNullable = true)]
- public DateTime? DrawingPlanEnd { get; set; }
- [SugarColumn(ColumnName = "DrawingActualStart", IsNullable = true)]
- public DateTime? DrawingActualStart { get; set; }
- [SugarColumn(ColumnName = "DrawingActualEnd", IsNullable = true)]
- public DateTime? DrawingActualEnd { get; set; }
- [SugarColumn(ColumnName = "Applicant", Length = 64, IsNullable = true)]
- public string? Applicant { get; set; }
- [SugarColumn(ColumnName = "ApplyDate", IsNullable = true)]
- public DateTime? ApplyDate { get; set; }
- [SugarColumn(ColumnName = "ProductModel", Length = 128, IsNullable = true)]
- public string? ProductModel { get; set; }
- [SugarColumn(ColumnName = "ItemNum", Length = 64, IsNullable = true)]
- public string? ItemNum { get; set; }
- /// <summary>zh / en</summary>
- [SugarColumn(ColumnName = "Language", Length = 16, IsNullable = true)]
- public string? Language { get; set; }
- [SugarColumn(ColumnName = "Qty", IsNullable = true)]
- public decimal? Qty { get; set; }
- [SugarColumn(ColumnName = "RequirementDate", IsNullable = true)]
- public DateTime? RequirementDate { get; set; }
- [SugarColumn(ColumnName = "SampleQty", IsNullable = true)]
- public decimal? SampleQty { get; set; }
- [SugarColumn(ColumnName = "LineRemark", Length = 512, IsNullable = true)]
- public string? LineRemark { get; set; }
- [SugarColumn(ColumnName = "CreateUser", Length = 64, IsNullable = true)]
- public string? CreateUser { get; set; }
- [SugarColumn(ColumnName = "CreateTime", IsNullable = true)]
- public DateTime? CreateTime { get; set; }
- [SugarColumn(ColumnName = "UpdateUser", Length = 64, IsNullable = true)]
- public string? UpdateUser { get; set; }
- [SugarColumn(ColumnName = "UpdateTime", IsNullable = true)]
- public DateTime? UpdateTime { get; set; }
- [SugarColumn(ColumnName = "IsActive", IsNullable = true)]
- public int? IsActive { get; set; }
- /// <summary>绉熸埛ID锛堝绉熸埛闅旂锛?/summary>
- [SugarColumn(ColumnName = "tenant_id", IsNullable = true)]
- public long? TenantId { get; set; }
- }
|