using SqlSugar;
|
|
namespace MES.Service.Dto.service;
|
|
public class InventoryItemDetail
|
{
|
[SugarColumn(ColumnName = "WORK_NO")] public string WorkNo { get; set; }
|
|
[SugarColumn(ColumnName = "WORK_LINE")]
|
public string WorkLine { get; set; }
|
|
[SugarColumn(ColumnName = "ITEM_NO")] public string ItemNo { get; set; }
|
|
[SugarColumn(ColumnName = "ITEM_NAME")]
|
public string ItemName { get; set; }
|
|
[SugarColumn(ColumnName = "ITEM_MODEL")]
|
public string ItemModel { get; set; }
|
|
[SugarColumn(ColumnName = "SUM_QUANTITY")]
|
public decimal SumQuantity { get; set; }
|
|
[SugarColumn(ColumnName = "UNIT")] public string Unit { get; set; }
|
|
[SugarColumn(ColumnName = "SUPP_NO")] public string SuppNo { get; set; }
|
|
[SugarColumn(ColumnName = "QUANTITY")] public decimal Quantity { get; set; }
|
|
[SugarColumn(ColumnName = "REFUNDABLE_QUANTITY")]
|
public decimal RefundableQuantity { get; set; }
|
|
[SugarColumn(ColumnName = "CBILL_NO")] public string CbillNo { get; set; }
|
|
[SugarColumn(ColumnName = "TASK_NO")] public string TaskNo { get; set; }
|
|
[SugarColumn(ColumnName = "BILL_NO")] public string BillNo { get; set; }
|
|
[SugarColumn(ColumnName = "CREATE_DATE")]
|
public string CreateDate { get; set; } // 如果需要日期处理,可以考虑使用 DateTime 类型
|
}
|