啊鑫
2024-09-19 30846c0d13ee4136d68ba509b05281378db951c6
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
namespace MES.Service.Dto.webApi;
 
public class ErpProductionOrderDto
{
    public string? Type { get; set; }
    public string? FBillNo { get; set; } // 单据编号
    public string? F_UNW_Text_tpgy { get; set; } // 贴片工艺属性
    public string? FStockID { get; set; } // 仓库
    public string? FDate { get; set; } // 单据日期
    public string? FBillType { get; set; } // 单据类型
    public string? FStatus { get; set; } // 业务状态
    public string? FMaterialId { get; set; } // 产品编码
    public string? FUnitID { get; set; } // 单位
    public string? FQty { get; set; } // 工单数量
    public string? FWorkGroupId { get; set; } // 计划组
    public string? FPlannerID { get; set; } // 计划员
    public string? FPlanStartDate { get; set; } // 预计开工时间
    public string? FPlanFinishDate { get; set; } // 预计完工时间
    public string? FStockInLimitH { get; set; } // 入库上限
    public string? FStockInLimitL { get; set; } // 入库下限
    public string? FMTONO { get; set; } // 计划跟踪号
    public string? FLot { get; set; } // 批号
    public string? FBomId { get; set; } // BOM版次
    public string? F_UNW_XSDDH { get; set; } // 销售订单号
    public string? FCreateType { get; set; } // 生成方式
    public string? FSUBID { get; set; } // ERP生产订单ID
    public string? FSUBBILLNOSEQ { get; set; } // ERP生产订单序号
    public string? FSUBBILLNO { get; set; } // ERP生产订单单号
    public string? FSrcBillType { get; set; } // 源单类型
    public string? FSrcBillNo { get; set; } // 源单编号
    public string? FSrcBillEntrySeq { get; set; } // 源单分录行号
    public string? FSALEORDERNO { get; set; } // 需求单据号
    public string? FSaleOrderEntrySeq { get; set; } // 需求单据行号
    public string? FFORCECLOSERID { get; set; } // 结案人
    public string? FCloseType { get; set; } // 结案类型
    public string? FDescription { get; set; } // 备注
    public string? FPPOMID { get; set; } // ERPID
    public string? FSUBENTRYID { get; set; } // ERP生产订单分录内码
    public string? FPurOrderNo { get; set; } // 采购订单
    public string? FPurOrderEntrySeq { get; set; } // 采购订单行号
    public string? F_UNW_BaseProperty_bzds { get; set; } // 标准点数
    public string? F_UNW_BaseProperty_jjds { get; set; } // 计价点数
    public string? FBaseStockInQty { get; set; } // 入库数量
    public string? FBaseNoStockInQty { get; set; } // 未入库数量
    public string? FInStockOwnerId { get; set; } // 入库货主
}