1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| using System;
| using System.Collections.Generic;
| using System.Text;
|
| namespace Model
| {
| public class ClsSc_ICMOBillSub:DBUtility.ClsXt_BaseBillSub
| {
| //============
| //public string HRemark;
| public Int64 HMaterID;
| public Int64 HSourceID;
| public Int64 HDeptID;
| public Int64 HUnitID;
| public double? HQty;
| public int HSTATUS;
| public DateTime? HPlanBeginDate;
| public DateTime? HPlanEndDate;
| public DateTime? HBeginDate;
| public DateTime? HEndDate;
| public Int64 HBomID;
| public Int64 HCusID;
| }
| }
|
|