hao
2025-05-23 db8dbafae693a62e9fe901adabfc4adcdbd92f7b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
namespace MES.Service.Dto.webApi;
 
public class ErpShzdDetail
{
    public int ERPID { get; set; }
    public int EID { get; set; }
 
    public string? LineNo { get; set; }      //收料通知单分录内码 
    public string?  FORDERBILLNO   { get; set; }      //采购单号 
    public string?   FMATERIALID   { get; set; }      //物料编码 
    public string?  FPOQTY         { get; set; }      //采购订单数量
    public string?  FACTRECEIVEQTY { get; set; }      //本次应收数量 
    public string? FACTREQTY { get; set; }            //本次实收数量 
    public string?  FUNITID        { get; set; }      //采购单位
    public string?  FSTOCKUNITID   { get; set; }      //库存单位 
    public string?  FDESCRIPTION   { get; set; }      //备注 
    public string?  FSRCBILLNO     { get; set; }      //采购单ID  
    public string?  FSRCENTRYID    { get; set; }      //采购单行ID  
    public string? FXSHTH { get; set; }               //销售订单号
    public string? FMtoNo{ get; set; }               //计划跟踪号
    public string? FLot { get; set; }               //批号
 
 
}