| | |
| | | |
| | | namespace WIDESEA_Model.Models |
| | | { |
| | | /// <summary> |
| | | /// æ¶è´§åæç» |
| | | /// </summary> |
| | | [SugarTable(nameof(Dt_ReceiveOrderDetail), "æ¶è´§åæç»")] |
| | | public class Dt_ReceiveOrderDetail : BaseEntity |
| | | { |
| | |
| | | [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "éè´åå·")] |
| | | public string PurchaseOrderNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// éè´åæç»è¡å· |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "éè´åæç»è¡å·")] |
| | | public int PurchaseOrderDetailRowNo { get; set; } |
| | | |
| | |
| | | /// <summary> |
| | | /// åä½ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "")] |
| | | [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "åä½")] |
| | | public string Unit { get; set; } |
| | | |
| | | /// <summary> |
| | | /// ç©æåç§° |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 200, ColumnDescription = "ç©æåç§°")] |
| | | public string MaterielName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// ç©æè§æ ¼ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 200, ColumnDescription = "ç©æè§æ ¼")] |
| | | public string MaterielSpec { get; set; } |
| | | } |
| | | } |