using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace WebAPI.Models { public class SOPBill { public string HBillType { get; set; } //单据类型 public int HInterID { get; set; } //主表主键ID public string HBillNo { get; set; } //单据号 public DateTime HDate { get; set; } //日期 public int HBillStatus { get; set; } //单据状态 public string HRemark { get; set; } //备注 public string HName { get; set; } //指导书名称 public int HMaterID { get; set; } //产品id public string HMaterNumber { get; set; } //产品代码 public int HMaterTypeID { get; set; } //物料分类内码 public string HMaterName { get; set; } //产品名称 public string HMaterModel { get; set; } //规格型号 public int HUnitID { get; set; } //单位id public string HUnitNumber { get; set; } //单位代码 public string HUnitName { get; set; } //计量单位 public bool HStandard { get; set; } //是否默认工艺 public bool HUse { get; set; } //是否使用 public int HYear { get; set; } //会计年 public int HPeriod { get; set; } //会计月 } }