| | |
| | | using SqlSugar; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using SqlSugar; |
| | | |
| | | namespace MES.Service.Modes; |
| | | |
| | | namespace MES.Service.Modes |
| | | { |
| | | /// <summary> |
| | | /// 采购订单明细表 |
| | | /// </summary> |
| | |
| | | public class MesRohInData |
| | | { |
| | | /// <summary> |
| | | /// 采购单号 |
| | | /// 收料部门 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "BILL_NO")] |
| | | public string? BillNo { get; set; } |
| | | [SugarColumn(ColumnName = "RECEIVING_DEPARTMENT")] |
| | | public string? ReceivingDepartment { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 销售订单号 |
| | |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "ITEM_ID")] |
| | | public string? ItemId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 物料名称 |
| | | /// </summary> |
| | | // [SugarColumn(ColumnName = "ITEM_NAME")] |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string? ItemName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 物料规格 |
| | | /// </summary> |
| | | // [SugarColumn(ColumnName = "ITEM_SPEC")] |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string? ItemSpec { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 采购单位 |
| | |
| | | public decimal? EbelnK3id { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 自定义字段1 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "REMARK1")] |
| | | public string? Remark1 { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 自定义字段2 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "REMARK2")] |
| | | public string? Remark2 { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 自定义字段3 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "REMARK3")] |
| | | public string? Remark3 { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 自定义字段4 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "REMARK4")] |
| | | public string? Remark4 { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 自定义字段5 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "REMARK5")] |
| | | public string? Remark5 { get; set; } |
| | |
| | | /// <summary> |
| | | /// 采购订单行号 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "purchase_order_line_number")] |
| | | [SugarColumn(ColumnName = "PURCHASE_ORDER_LINE_NUMBER")] |
| | | public string? PurchaseOrderLineNumber { get; set; } |
| | | |
| | | /// <summary> |
| | |
| | | public string? Receiving { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 收料部门 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "RECEIVING_DEPARTMENT")] |
| | | public string? ReceivingDepartment { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 结算组织 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "SETTLEMENT")] |
| | | public string? Settlement { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 已交货数量 |
| | | ///</summary> |
| | | [SugarColumn(ColumnName = "CGB014")] |
| | | public decimal? Cgb014 { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 需求部门 |
| | |
| | | public string? DemandDept { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 需求部门 |
| | | /// 收料部门 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "RECEIVING_DEPT")] |
| | | public string? ReceivingDept { get; set; } |
| | |
| | | [SugarColumn(ColumnName = "ARRIVE_DATE")] |
| | | public DateTime? ArriveDate { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 需求部门 |
| | | /// 采购单号 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "FSUBREQENTRYID")] |
| | | public decimal? FSUBREQENTRYID { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "BILL_NO")] |
| | | public string? BillNo { get; set; } |
| | | } |
| | | } |