using System;
|
|
namespace WebAPI.Models
|
{
|
public class ClsQC_RequestCheckBillMain
|
{
|
// 基础字段
|
public int HYear { get; set; }
|
public int HPeriod { get; set; }
|
public string HBillType { get; set; }
|
public string HBillSubType { get; set; }
|
public int HInterID { get; set; }
|
public DateTime HDate { get; set; }
|
public string HBillNo { get; set; }
|
public int HBillStatus { get; set; }
|
public int HCheckItemNowID { get; set; }
|
public int HCheckItemNextID { get; set; }
|
public int HCheckFlowID { get; set; }
|
public string HRemark { get; set; }
|
public string HBacker { get; set; }
|
public DateTime? HBackDate { get; set; }
|
public string HBackRemark { get; set; }
|
public string HChecker { get; set; }
|
public DateTime? HCheckDate { get; set; }
|
public string HMaker { get; set; }
|
public DateTime? HMakeDate { get; set; }
|
public string HUpDater { get; set; }
|
public DateTime? HUpDateDate { get; set; }
|
public string HCloseMan { get; set; }
|
public DateTime? HCloseDate { get; set; }
|
public bool HCloseType { get; set; }
|
public string HDeleteMan { get; set; }
|
public DateTime? HDeleteDate { get; set; }
|
public string HMainSourceBillType { get; set; }
|
public int HMainSourceInterID { get; set; }
|
public int HMainSourceEntryID { get; set; }
|
public string HMainSourceBillNo { get; set; }
|
public int HPrintQty { get; set; }
|
|
// 自定义字段
|
public int HSourceID { get; set; }
|
public int HDeptID { get; set; }
|
public string HBatchNo { get; set; }
|
public int HCheckEmp { get; set; }
|
public int HProcID { get; set; }
|
public int HGroupID { get; set; }
|
public int HShiftsID { get; set; }
|
public string HTestType { get; set; }
|
public int HSourceOrgID { get; set; }
|
public int HInspectOrgID { get; set; }
|
}
|
}
|