| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- 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; }
- /// <summary>图纸设计周期(小时)</summary>
- [SugarColumn(ColumnName = "DrawingDesignCycle", IsNullable = true)]
- public int? DrawingDesignCycle { 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; }
- [SugarColumn(ColumnName = "ProductName", Length = 256, IsNullable = true)]
- public string? ProductName { 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; }
- }
|