using System; using System.Text; namespace com.hnshituo.ck { [Serializable] public class MatStdBaseinfo { /** 标准基础信息索引号MIC+7位流水 */ private string mic; public string Mic { get { return mic; } set { mic = value; } } /** 原材料规范描述用,分割 物料+牌号+产品标准+技术标准+组别+级别 + 验证方式 */ private string micDesc; public string MicDesc { get { return micDesc; } set { micDesc = value; } } /** 物料编码 PUR_MAT PC_FLAG = ‘1’ AND VALIDFLAG = ‘1’ */ private string itemCode; public string ItemCode { get { return itemCode; } set { itemCode = value; } } /** 物料名称 */ private string itemName; public string ItemName { get { return itemName; } set { itemName = value; } } /** 牌号 */ private string grade; public string Grade { get { return grade; } set { grade = value; } } /** 主键ID PUR_STANDARDS VALIDFLAG = ‘1’ */ private string standardsId; public string StandardsId { get { return standardsId; } set { standardsId = value; } } /** 采购标准编号 产品标准 */ private string standardsCode; public string StandardsCode { get { return standardsCode; } set { standardsCode = value; } } /** 内控标准ID(技术标准) */ private string productStdId; public string ProductStdId { get { return productStdId; } set { productStdId = value; } } /** 内控标准(技术标准) */ private string productStd; public string ProductStd { get { return productStd; } set { productStd = value; } } /** 组别代码 默认为空 */ private string groupLevelCode; public string GroupLevelCode { get { return groupLevelCode; } set { groupLevelCode = value; } } /** 组别描述 COM_BASE_INFO SORTCODE = ‘4091’ */ private string groupLevel; public string GroupLevel { get { return groupLevel; } set { groupLevel = value; } } /** 等级代码(默认为合格不允许为空) */ private string judgeLevelCode; public string JudgeLevelCode { get { return judgeLevelCode; } set { judgeLevelCode = value; } } /** 等级维护在质量基础信息表,标准等级(合格,一级,二级,三级.....特级)没有等级的则是合格,判定的时候从最高级别开始判定 */ private string judgeLevel; public string JudgeLevel { get { return judgeLevel; } set { judgeLevel = value; } } /** 判定类型(验证方式) 代码 COM_BASE_INFO SORTCODE = ‘4090’ */ private string judgeTypeCode; public string JudgeTypeCode { get { return judgeTypeCode; } set { judgeTypeCode = value; } } /** 判定类型 0 检验 1验证 2检验_验证默认0 */ private string judgeType; public string JudgeType { get { return judgeType; } set { judgeType = value; } } /** 取样标准 */ private string getSampleStd; public string GetSampleStd { get { return getSampleStd; } set { getSampleStd = value; } } /** 取样标准具体描述 */ private string getSampleStdDesc; public string GetSampleStdDesc { get { return getSampleStdDesc; } set { getSampleStdDesc = value; } } /** 数据状态(有效、无效) */ private string validflag; public string Validflag { get { return validflag; } set { validflag = value; } } /** 备注 */ private string remark; public string Remark { get { return remark; } set { remark = value; } } /** 创建人 */ private string createName; public string CreateName { get { return createName; } set { createName = value; } } /** 创建时间 */ private DateTime? createTime; public DateTime? CreateTime { get { return createTime; } set { createTime = value; } } /** 修改人 */ private string updateName; public string UpdateName { get { return updateName; } set { updateName = value; } } /** 修改时间 */ private DateTime? updateTime; public DateTime? UpdateTime { get { return updateTime; } set { updateTime = value; } } /** 删除人 */ private string deleteName; public string DeleteName { get { return deleteName; } set { deleteName = value; } } /** 删除时间 */ private DateTime? deleteTime; public DateTime? DeleteTime { get { return deleteTime; } set { deleteTime = value; } } } }