using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Core.StlMes.Client.SaleOrder { public class SlmCustAlphaProObject { /// /// 客户Alpha编号 /// private string custAlphaNo; /// /// 加工索引号 /// private string gic; /// /// 序号 /// private string xh; /// /// 工序点代码(工序='加工线' and工序点类型='403208') /// private string stationCode; /// /// 工序点名称 /// private string stationDesc; /// /// 工序代码 /// private string processCdoe; /// /// 工序名称 /// private string processDesc; /// /// 二级工序代码 /// private string processCdoeC; /// /// 二级工序名称 /// private string processDescC; /// /// 值(文本型的) /// private string valueText; /// /// 值(数值型的) /// private string valueNum; /// /// 值(对值的追加说明) /// private string valueMemo; /// /// 分组索引号(同一分组的为多选一项) /// private string groupSeq; /// /// 有效标志(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 memo = ""; public SlmCustAlphaProObject() { custAlphaNo = ""; gic = ""; xh = ""; stationCode = ""; stationDesc = ""; processCdoe = ""; processDesc = ""; processCdoeC = ""; processDescC = ""; valueText = ""; valueNum = ""; valueMemo = ""; groupSeq = ""; validflag = ""; createName = ""; createTime = ""; updateName = ""; updateTime = ""; deleteName = ""; deleteTime = ""; } /// /// 客户Alpha编号 /// public string CustAlphaNo { get { return custAlphaNo; } set { custAlphaNo = value; } } /// /// 加工索引号 /// public string Gic { get { return gic; } set { gic = value; } } /// /// 序号 /// public string Xh { get { return xh; } set { xh = value; } } /// /// 工序点代码(工序='加工线' and工序点类型='403208') /// public string StationCode { get { return stationCode; } set { stationCode = value; } } /// /// 工序点名称 /// public string StationDesc { get { return stationDesc; } set { stationDesc = value; } } /// /// 工序代码 /// public string ProcessCdoe { get { return processCdoe; } set { processCdoe = value; } } /// /// 工序名称 /// public string ProcessDesc { get { return processDesc; } set { processDesc = value; } } /// /// 二级工序代码 /// public string ProcessCdoeC { get { return processCdoeC; } set { processCdoeC = value; } } /// /// 二级工序名称 /// public string ProcessDescC { get { return processDescC; } set { processDescC = value; } } /// /// 值(文本型的) /// public string ValueText { get { return valueText; } set { valueText = value; } } /// /// 值(数值型的) /// public string ValueNum { get { return valueNum; } set { valueNum = value; } } /// /// 值(对值的追加说明) /// public string ValueMemo { get { return valueMemo; } set { valueMemo = value; } } /// /// 分组索引号(同一分组的为多选一项) /// public string GroupSeq { get { return groupSeq; } set { groupSeq = 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 Memo { get { return memo; } set { memo = value; } } } }