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; } // 自增列 } }