1
wangyi
2026-01-20 f8311cb4293ddf53b739ba521dfff4abafc08c2e
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
using System;
using System.Collections.Generic;
using System.Text;
 
namespace Model
{
    public class ClsCg_CarTrajectoryBillSub
    {
        // 关联主表
        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; }                // 源单ID
        public int HSourceEntryID { get; set; }                // 源单子ID
        public string HSourceBillNo { get; set; }              // 源单单号
        public string HSourceBillType { get; set; }            // 源单类型
        public decimal HRelationQty { get; set; }              // 关联数量
        public decimal HRelationMoney { get; set; }            // 关联金额
 
        // 自增列
        public int HItemSubID { get; set; }                    // 自增列
 
    }
}