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
| using System;
| using System.Collections.Generic;
| using System.Linq;
| using System.Web;
|
| namespace WebAPI.Models
| {
| public class ClsQK_PackingBill
| {
| public Int64 HMaterID;
| public string HMaterNumber;
| public string HMaterName;
| public Int64 HUnitID;
| public string HUnitName;
| public Int64 HPlanQty;
| public Int64 HMinQty;
| public Int64 HTotalQty;
| public Int64 HSpsQty;
| public Int64 HCusID;
| public string HCusName;
| public Int64 HEmpID;
| public string HEmpName;
| public Int64 HDeptID;
| public string HDeptName;
| public string HPlanEndDate;
| public Int64 HInterID;
| public string HBillNo;
| }
| }
|
|