| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- using System;
- using System.Text;
- namespace com.hnshituo.ck
- {
- [Serializable]
- public class MatStdDetail
- {
- /** 标准基础信息索引号MIC+7位流水 */
- private string mic;
- public string Mic
- {
- get { return mic; }
- set { mic = value; }
- }
- /** 原材料项目编码 MAT=Materials */
- private string matCode;
- public string MatCode
- {
- get { return matCode; }
- set { matCode = value; }
- }
- /** 原材料项目名称 */
- private string matName;
- public string MatName
- {
- get { return matName; }
- set { matName = value; }
- }
- /** 条件 */
- private string addCondition;
- public string AddCondition
- {
- get { return addCondition; }
- set { addCondition = value; }
- }
- /** 是否是复合标准项(1:是,0:不是)(标准值通过公式进行计算) */
- private string complexType;
- public string ComplexType
- {
- get { return complexType; }
- set { complexType = value; }
- }
- /** 复合检验项计算公式 */
- private string matFormula;
- public string MatFormula
- {
- get { return matFormula; }
- set { matFormula = value; }
- }
- /** 标准范围下限符号 */
- private string stdminSign;
- public string StdminSign
- {
- get { return stdminSign; }
- set { stdminSign = value; }
- }
- /** 标准范围下限 */
- private string stdmin;
- public string Stdmin
- {
- get { return stdmin; }
- set { stdmin = value; }
- }
- /** 标准范围上限符号 */
- private string stdmaxSign;
- public string StdmaxSign
- {
- get { return stdmaxSign; }
- set { stdmaxSign = value; }
- }
- /** 标准范围上限 */
- private string stdmax;
- public string Stdmax
- {
- get { return stdmax; }
- set { stdmax = value; }
- }
- /** 检验周期 */
- private string checkCycle;
- public string CheckCycle
- {
- get { return checkCycle; }
- set { checkCycle = 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 checkCondition;
- public string CheckCondition
- {
- get { return checkCondition; }
- set { checkCondition = 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; }
- }
- /** 检验项目类型 */
- private string stdType;
- public string StdType
- {
- get { return stdType; }
- set { stdType = value; }
- }
- }
- }
|