| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253 |
- using System;
- using System.Text;
- namespace com.hnshituo.pur.vo
- {
- [Serializable]
- public class CheckconsignDetail
- {
- /** 检验编号 */
- private string checkNo;
- public string CheckNo
- {
- get { return checkNo; }
- set { checkNo = value; }
- }
- /** 批次号(带删除) */
- private string batchNo;
- public string BatchNo
- {
- get { return batchNo; }
- set { batchNo = value; }
- }
- /** 原材料项目编码 MAT=Materials 如果是废钢则写DELIVERY_SUB_LINE_SQE */
- private string matCode;
- public string MatCode
- {
- get { return matCode; }
- set { matCode = value; }
- }
- /** 原材料项目编码 MAT=Materials 如果是废钢则写车号 */
- private string matName;
- public string MatName
- {
- get { return matName; }
- set { matName = value; }
- }
- /** 检验项目类型 单一的还是复合的 0单一 */
- private string matType;
- public string MatType
- {
- get { return matType; }
- set { matType = value; }
- }
- /** 值单位 */
- private string matUnit;
- public string MatUnit
- {
- get { return matUnit; }
- set { matUnit = value; }
- }
- /** 等级维护在质量基础信息表,标准等级(合格,一级,二级,三级.....特级)没有等级的则是合格,判定的时候从最高级别开始判定 */
- private string judgeLevel;
- public string JudgeLevel
- {
- get { return judgeLevel; }
- set { judgeLevel = value; }
- }
- /** 试验类别(所属实验室项目) */
- private string deptId;
- public string DeptId
- {
- get { return deptId; }
- set { deptId = value; }
- }
- /** 实验结果 */
- private string matValue;
- public string MatValue
- {
- get { return matValue; }
- set { matValue = value; }
- }
- /** 0未确认,1已录入质保书结果,2已上传结果 */
- private string flag;
- public string Flag
- {
- get { return flag; }
- set { flag = value; }
- }
- /** 备注 */
- private string remark;
- public string Remark
- {
- get { return remark; }
- set { remark = value; }
- }
- /** 值类型 0数值 1文本... */
- private string valueType;
- public string ValueType
- {
- get { return valueType; }
- set { valueType = value; }
- }
- /** 质保书结果 */
- private string zbsValue;
- public string ZbsValue
- {
- get { return zbsValue; }
- set { zbsValue = value; }
- }
- /** 等级代码(默认为合格不允许为空) */
- private string judgeLevelCode;
- public string JudgeLevelCode
- {
- get { return judgeLevelCode; }
- set { judgeLevelCode = value; }
- }
- /** 扣杂扣水重量(废钢用) */
- private string deductWeight;
- public string DeductWeight
- {
- get { return deductWeight; }
- set { deductWeight = 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; }
- }
- /** 0产品标准 1内控标准 */
- private string stdType;
- public string StdType
- {
- get { return stdType; }
- set { stdType = value; }
- }
- }
- }
|