llj
17 小时以前 0faaa17ea9fc63b53793f1b9a7622e89169ecdaf
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
using System;
 
namespace WebAPI.Models
{
    public class ClsQC_RequestCheckBillSub
    {
        // 主表关联字段
        public int HInterID { get; set; }
        public string HBillNo_bak { get; set; }
        public int HEntryID { get; set; }
 
        // 状态字段
        public string HCloseMan { get; set; }
        public DateTime? HEntryCloseDate { get; set; }
        public bool HCloseType { get; set; }
        public string HRemark { get; set; }
 
        // 源单关联字段
        public int HSourceInterID { get; set; }
        public int HSourceEntryID { get; set; }
        public string HSourceBillNo { get; set; }
        public string HSourceBillType { get; set; }
        public double HRelationQty { get; set; }      // dec(18,8) 对应 double
        public double HRelationMoney { get; set; }    // dec(18,8) 对应 double
 
        // 自定义字段
        public int HMaterID { get; set; }
        public int HUnitID { get; set; }
        public double HQty { get; set; }              // money 对应 double
        public double HSampleDamageQty { get; set; }  // dec(18,8) 对应 double
    }
}