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 } }