using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace WebAPI.Models.SBGL.SBBB { public class Sb_EquipMentCollectionTechParam_Temp { public int HItemID { get; set; } // int --自增列 public DateTime HDate { get; set; } // datetime --日期 public string HSourceCode {get; set;} // varchar(50) --设备编码 public int HTechParamID { get; set; } //int --工艺参数 public string HTechParamName { get; set; } // varchar(50) --工艺参数名称(硬件里取过来的原始名字) public decimal HCount { get; set; } // dec(18,2) --数量 public DateTime HCreateTime { get; set; } // datetime --最新时间点 public string HResult { get; set; } // varchar(50) --工艺参数值 public string HProcNumber { get; set; } // varchar(50) --工序 public bool HFlag { get; set; } // bit --同步标记 public static implicit operator Sb_EquipMentCollectionTechParam_Temp(Supplier v) { throw new NotImplementedException(); } } }