| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.ComponentModel;
- namespace com.steering.pss.sale.order.model
- {
- public class ComBaseAskRStationEntity
- {
- /// <summary>
- /// 附加要求编码
- /// </summary>
- private object askItemNo;
- /// <summary>
- /// 附加要求描述
- /// </summary>
- private object askItemDesc;
- /// <summary>
- /// 工序点代码
- /// </summary>
- private object stationCode;
- /// <summary>
- /// 工序点名称
- /// </summary>
- private object stationDesc;
- /// <summary>
- /// 工序代码
- /// </summary>
- private object processCdoe;
- /// <summary>
- /// 工序名称
- /// </summary>
- private object processDesc;
- /// <summary>
- /// 二级工序代码
- /// </summary>
- private object processCdoeC;
- /// <summary>
- /// 二级工序名称
- /// </summary>
- private object processDescC;
- /// <summary>
- /// 创建人
- /// </summary>
- private object createName;
- /// <summary>
- /// 创建时间
- /// </summary>
- private object createTime;
- /// <summary>
- /// 修改人
- /// </summary>
- private object updateName;
- /// <summary>
- /// 修改时间
- /// </summary>
- private object updateTime;
- /// <summary>
- /// 删除人
- /// </summary>
- private object deleteName;
- /// <summary>
- /// 删除时间
- /// </summary>
- private object deleteTime;
- /// <summary>
- /// 有效标志(1:有效,0:无效)
- /// </summary>
- private object validflag;
- /// <summary>
- /// 备注
- /// </summary>
- private object memo;
- public ComBaseAskRStationEntity()
- {
- askItemNo = "";
- askItemDesc = "";
- stationCode = "";
- stationDesc = "";
- processCdoe = "";
- processDesc = "";
- processCdoeC = "";
- processDescC = "";
- createName = "";
- createTime = "";
- updateName = "";
- updateTime = "";
- deleteName = "";
- deleteTime = "";
- validflag = "";
- memo = "";
- }
- /// <summary>
- /// 附加要求编码
- /// </summary>
- [Description("附加要求编码")]
- public object AskItemNo
- {
- get { return askItemNo; }
- set
- {
- if (value == null)
- {
- askItemNo = DBNull.Value;
- }
- else
- {
- askItemNo = value;
- }
- }
- }
- /// <summary>
- /// 附加要求描述
- /// </summary>
- [Description("附加要求描述")]
- public object AskItemDesc
- {
- get { return askItemDesc; }
- set
- {
- if (value == null)
- {
- askItemDesc = DBNull.Value;
- }
- else
- {
- askItemDesc = value;
- }
- }
- }
- /// <summary>
- /// 工序点代码
- /// </summary>
- [Description("工序点代码")]
- public object StationCode
- {
- get { return stationCode; }
- set
- {
- if (value == null)
- {
- stationCode = DBNull.Value;
- }
- else
- {
- stationCode = value;
- }
- }
- }
- /// <summary>
- /// 工序点名称
- /// </summary>
- [Description("工序点名称")]
- public object StationDesc
- {
- get { return stationDesc; }
- set
- {
- if (value == null)
- {
- stationDesc = DBNull.Value;
- }
- else
- {
- stationDesc = value;
- }
- }
- }
- /// <summary>
- /// 工序代码
- /// </summary>
- [Description("工序代码")]
- public object ProcessCdoe
- {
- get { return processCdoe; }
- set
- {
- if (value == null)
- {
- processCdoe = DBNull.Value;
- }
- else
- {
- processCdoe = value;
- }
- }
- }
- /// <summary>
- /// 工序名称
- /// </summary>
- [Description("工序名称")]
- public object ProcessDesc
- {
- get { return processDesc; }
- set
- {
- if (value == null)
- {
- processDesc = DBNull.Value;
- }
- else
- {
- processDesc = value;
- }
- }
- }
- /// <summary>
- /// 二级工序代码
- /// </summary>
- [Description("二级工序代码")]
- public object ProcessCdoeC
- {
- get { return processCdoeC; }
- set
- {
- if (value == null)
- {
- processCdoeC = DBNull.Value;
- }
- else
- {
- processCdoeC = value;
- }
- }
- }
- /// <summary>
- /// 二级工序名称
- /// </summary>
- [Description("二级工序名称")]
- public object ProcessDescC
- {
- get { return processDescC; }
- set
- {
- if (value == null)
- {
- processDescC = DBNull.Value;
- }
- else
- {
- processDescC = value;
- }
- }
- }
- /// <summary>
- /// 创建人
- /// </summary>
- [Description("创建人")]
- public object CreateName
- {
- get { return createName; }
- set
- {
- if (value == null)
- {
- createName = DBNull.Value;
- }
- else
- {
- createName = value;
- }
- }
- }
- /// <summary>
- /// 创建时间
- /// </summary>
- [Description("创建时间")]
- public object CreateTime
- {
- get { return createTime; }
- set
- {
- if (value == null)
- {
- createTime = DBNull.Value;
- }
- else
- {
- createTime = value;
- }
- }
- }
- /// <summary>
- /// 修改人
- /// </summary>
- [Description("修改人")]
- public object UpdateName
- {
- get { return updateName; }
- set
- {
- if (value == null)
- {
- updateName = DBNull.Value;
- }
- else
- {
- updateName = value;
- }
- }
- }
- /// <summary>
- /// 修改时间
- /// </summary>
- [Description("修改时间")]
- public object UpdateTime
- {
- get { return updateTime; }
- set
- {
- if (value == null)
- {
- updateTime = DBNull.Value;
- }
- else
- {
- updateTime = value;
- }
- }
- }
- /// <summary>
- /// 删除人
- /// </summary>
- [Description("删除人")]
- public object DeleteName
- {
- get { return deleteName; }
- set
- {
- if (value == null)
- {
- deleteName = DBNull.Value;
- }
- else
- {
- deleteName = value;
- }
- }
- }
- /// <summary>
- /// 删除时间
- /// </summary>
- [Description("删除时间")]
- public object DeleteTime
- {
- get { return deleteTime; }
- set
- {
- if (value == null)
- {
- deleteTime = DBNull.Value;
- }
- else
- {
- deleteTime = value;
- }
- }
- }
- /// <summary>
- /// 有效标志(1:有效,0:无效)
- /// </summary>
- [Description("有效标志(1:有效,0:无效)")]
- public object Validflag
- {
- get { return validflag; }
- set
- {
- if (value == null)
- {
- validflag = DBNull.Value;
- }
- else
- {
- validflag = value;
- }
- }
- }
- /// <summary>
- /// 备注
- /// </summary>
- [Description("备注")]
- public object Memo
- {
- get { return memo; }
- set
- {
- if (value == null)
- {
- memo = DBNull.Value;
- }
- else
- {
- memo = value;
- }
- }
- }
- }
- }
|