using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Core.StlMes.Client.SaleOrder
{
class SlmCustDetectionObject
{
///
/// 客户Alpha编号
///
private string custAlphaNo;
///
/// 探伤索引号
///
private string dic;
///
/// 序号
///
private string xh;
///
/// 材质检验项代码
///
private string phyCode;
///
/// 材质检验项名称
///
private string phyName;
///
/// 探伤位置代码(4020)
///
private string positionCode;
///
/// 探伤位置描述
///
private string positionDesc;
///
/// 探伤参考标准(4021)
///
private string stdDesc;
///
/// 探伤级别代码(4022)
///
private string lvCode;
///
/// 探伤级别描述
///
private string lvDesc;
///
/// 刻槽位置(4023)
///
private string groovePos;
///
/// 刻槽方向(4024)
///
private string grooveDir;
///
/// 探伤覆盖率(%)
///
private string coverage;
///
/// 探伤频率代码(4011)(按比例、逐支)
///
private string rate;
///
/// 探伤频率描述
///
private string descRate;
///
/// 频率值(按比例,具体百分比)
///
private string descVal;
///
/// 分组索引号(同一分组的为多选一项)
///
private string groupSeq;
///
/// 备注
///
private string memo;
///
/// 有效标志(1:有效,0:无效)
///
private string validflag;
///
/// 创建人
///
private string createName;
///
/// 创建时间
///
private string createTime;
///
/// 修改人
///
private string updateName;
///
/// 修改时间
///
private string updateTime;
///
/// 删除人
///
private string deleteName;
///
/// 删除时间
///
private string deleteTime;
private string minD;
private string maxD;
private string minH;
private string maxH;
public SlmCustDetectionObject()
{
custAlphaNo = "";
dic = "";
xh = "";
phyCode = "";
phyName = "";
positionCode = "";
positionDesc = "";
stdDesc = "";
lvCode = "";
lvDesc = "";
groovePos = "";
grooveDir = "";
coverage = "";
rate = "";
descRate = "";
descVal = "";
groupSeq = "";
memo = "";
validflag = "";
createName = "";
createTime = "";
updateName = "";
updateTime = "";
deleteName = "";
deleteTime = "";
}
///
/// 客户Alpha编号
///
public string CustAlphaNo
{
get { return custAlphaNo; }
set { custAlphaNo = value; }
}
///
/// 探伤索引号
///
public string Dic
{
get { return dic; }
set { dic = value; }
}
///
/// 序号
///
public string Xh
{
get { return xh; }
set { xh = value; }
}
///
/// 材质检验项代码
///
public string PhyCode
{
get { return phyCode; }
set { phyCode = value; }
}
///
/// 材质检验项名称
///
public string PhyName
{
get { return phyName; }
set { phyName = value; }
}
///
/// 探伤位置代码(4020)
///
public string PositionCode
{
get { return positionCode; }
set { positionCode = value; }
}
///
/// 探伤位置描述
///
public string PositionDesc
{
get { return positionDesc; }
set { positionDesc = value; }
}
///
/// 探伤参考标准(4021)
///
public string StdDesc
{
get { return stdDesc; }
set { stdDesc = value; }
}
///
/// 探伤级别代码(4022)
///
public string LvCode
{
get { return lvCode; }
set { lvCode = value; }
}
///
/// 探伤级别描述
///
public string LvDesc
{
get { return lvDesc; }
set { lvDesc = value; }
}
///
/// 刻槽位置(4023)
///
public string GroovePos
{
get { return groovePos; }
set { groovePos = value; }
}
///
/// 刻槽方向(4024)
///
public string GrooveDir
{
get { return grooveDir; }
set { grooveDir = value; }
}
///
/// 探伤覆盖率(%)
///
public string Coverage
{
get { return coverage; }
set { coverage = value; }
}
///
/// 探伤频率代码(4011)(按比例、逐支)
///
public string Rate
{
get { return rate; }
set { rate = value; }
}
///
/// 探伤频率描述
///
public string DescRate
{
get { return descRate; }
set { descRate = value; }
}
///
/// 频率值(按比例,具体百分比)
///
public string DescVal
{
get { return descVal; }
set { descVal = value; }
}
///
/// 分组索引号(同一分组的为多选一项)
///
public string GroupSeq
{
get { return groupSeq; }
set { groupSeq = value; }
}
///
/// 备注
///
public string Memo
{
get { return memo; }
set { memo = value; }
}
///
/// 有效标志(1:有效,0:无效)
///
public string Validflag
{
get { return validflag; }
set { validflag = value; }
}
///
/// 创建人
///
public string CreateName
{
get { return createName; }
set { createName = value; }
}
///
/// 创建时间
///
public string CreateTime
{
get { return createTime; }
set { createTime = value; }
}
///
/// 修改人
///
public string UpdateName
{
get { return updateName; }
set { updateName = value; }
}
///
/// 修改时间
///
public string UpdateTime
{
get { return updateTime; }
set { updateTime = value; }
}
///
/// 删除人
///
public string DeleteName
{
get { return deleteName; }
set { deleteName = value; }
}
///
/// 删除时间
///
public string DeleteTime
{
get { return deleteTime; }
set { deleteTime = value; }
}
///
/// 外径下限
///
public string MinD
{
get { return minD; }
set { minD = value; }
}
///
/// 外径上限
///
public string MaxD
{
get { return maxD; }
set { maxD = value; }
}
///
/// 外径下限
///
public string MinH
{
get { return minH; }
set { minH = value; }
}
///
/// 外径上限
///
public string MaxH
{
get { return maxH; }
set { maxH = value; }
}
}
}