yusijie
2023-06-29 efa57c53b1b4c94e188a52f5a35d0a4ca8a82cb5
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
57
58
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace Model.生产管理
{
    public class ClsSc_PPBomBillMain : DBUtility.ClsXt_BaseBillMain
    {
        public string HBillNo;     //单据号
        public Int64 HMaterID;  //物料
        public Int64 HUnitID;  //计量单位
        public Int64 HDeptID;    //部门
        public DateTime HDate;  //日期
        public double HQty;  //数量
        public string HRemark;   //备注
 
 
        public Int64 HYear;
        public Int64 HPeriod;
        public string HBillType; // 单据类型
        public string HBillSubType; // 子类型
        public Int64 HInterID; 
        public Int64 HBillStatus;        //单据状态
        public Int64 HCheckItemNextID;  //待审核项目(默认值 0)    界面上不需要显示
        public Int64 HCheckFlowID;  //审批流(默认值 0)  界面上不需要显示
        public string HBacker; //退回人  (默认为'')
        public string HBackDate;  //退回日期 (允许NULL)
        public string HChecker;   //审核人 (默认为'')
        public string HCheckDate;          //审核日期 (允许NULL)
        public string HMaker;          //制单人
        public string HMakeDate;             //制单日期
        public string HUpDater;                 //修改人 (默认为'')
        public string HUpDateDate;         //修改日期 (允许NULL)
        public string HCloseMan;          //关闭人 (默认为'')
        public string HCloseDate;         //关闭日期 (允许NULL)
        public Int64 HCloseType;           //关闭类型   (默认为0)
        public string HDeleteMan;           //作废人 (默认为'')
        public string HDeleteDate;           //作废日期 (允许NULL)
        public Int64 HICMOInterID;  //生产订单内码
        public Int64 HCheckItemNowID;      //当前审核项目(默认值 0)        界面上不需要显示
        public Int64 HSeOrderInterID;  //销售订单内码
        public Int64 HSeOrderEntryID;  //销售订单子内码
        public string HSeOrderBillNo;  //销售订单号
        public string HType; // 类型(可能是 委外和生产)
        public Int64 HSeOrderEntrySEQ;  //销售订单行号
        public Int64 HICMOEntrySEQ;  //生产订单行号
        public string HREQSRC;   //需求来源
 
        public Int64 HICMOEntryID;
        public Int64 HPRDORGID;
        public Int64 HENTRUSTORGID;
        public Int64 HPARENTOWNERID;
        public string HPARENTOWNERTYPEID;
        public Int64 HERPInterID;
        public string HERPBillType;
    }
}