zjh
8 天以前 18ca42bc7a74433f735336bdfeaeb81c81633f39
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
 
namespace MES.Service.Dto.webApi;
 
public class ErpLineDetails
{
    /// <summary>
    /// 从表id
    /// </summary>
    public string Mid { get; set; }
   /// <summary>
   /// 主表erpid
   /// </summary>
    public string Eid { get; set; }
 
    /// <summary>
    /// 子行号(订单项下的细分序号,通常与父项关联)
    /// </summary>
 
    public string FlineNo { get; set; }
 
        /// <summary>
        /// 料品ID(关联物料主数据表的外键)
        /// </summary>
 
        public string FMaterialId { get; set; }
 
        /// <summary>
        /// 需求数量(业务部门提出的原始需求量)
        /// </summary>
        public decimal? ReqQty { get; set; }
 
        /// <summary>
        /// 计划到货数量(经MRP运算后的计划量)
        /// </summary>
        public decimal? PlannedQty { get; set; }
 
        /// <summary>
        /// 供应商确认到货数量(供应商承诺的交货量)
        /// </summary>
        public decimal? SupplierConfirmsQty { get; set; }
 
        /// <summary>
        /// 要求交货日期(采购申请或订单要求的到货日期)
        /// 注意:数据库存储为字符串格式,需根据业务格式转换
        /// </summary>
 
        public string RequestDeliveryDate { get; set; }
 
        /// <summary>
        /// 实际到货数量(仓库实际收货数量)
        /// </summary>
        public decimal? ActualArrivalQty { get; set; }
 
    }