| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433 |
- using Core.Mes.Client.Comm.Attribute;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- namespace Core.StlMes.Client.Lims.Port.数据管理.实体类
- {
- /// <summary>
- /// 数据库表CRAFT_SAMPLING_DETAIL所对应的实体类(生成工具:代码生成工具3.0)
- /// 作者:DM22222 时间:2018-05-14
- /// </summary>
- public class CraftSamplingDetailEntity
- {
- /// <summary>
- /// 工艺文件号
- /// </summary>
- private string craftNo = "";
- /// <summary>
- /// 工序代码
- /// </summary>
- private string processCode = "";
- /// <summary>
- /// 0;正常,1:首检增项
- /// </summary>
- private string type = "";
- /// <summary>
- /// 试样编号
- /// </summary>
- private string splineNo = "";
- /// <summary>
- /// 取样码
- /// </summary>
- private string phyCodeMin = "";
- /// <summary>
- /// 取样码描述
- /// </summary>
- private string phyNameMin = "";
- /// <summary>
- /// 取样频率代码(4011)(组批要求,支数限制)
- /// </summary>
- private string rate = "";
- /// <summary>
- /// 取样频率描述
- /// </summary>
- private string descRate = "";
- /// <summary>
- /// 分批单位(米/支/吨)
- /// </summary>
- private string batchUnit = "";
- /// <summary>
- /// 每批支数 改成 分批数量
- /// </summary>
- private decimal? batchCnt = null;
- /// <summary>
- /// 取样数量
- /// </summary>
- private decimal? descCount = null;
- /// <summary>
- /// 试验样条数
- /// </summary>
- private decimal? sampleCount = null;
- /// <summary>
- /// 取样位置代码(4012)
- /// </summary>
- private string position = "";
- /// <summary>
- /// 取样位置描述
- /// </summary>
- private string descPosition = "";
- /// <summary>
- /// 取样长度代码
- /// </summary>
- private string length = "";
- /// <summary>
- /// 取样宽度
- /// </summary>
- private decimal? width = null;
- /// <summary>
- /// 样片类型( 环 或 片)(COM_BASE_SPLINE)
- /// </summary>
- private string sampleStyle = "";
- /// <summary>
- /// 样片类型描述
- /// </summary>
- private string sampleStyleDesc = "";
- /// <summary>
- /// 试样组代码
- /// </summary>
- private string phyCodeGroup = "";
- /// <summary>
- /// 试样组代码描述
- /// </summary>
- private string phyNameGroup = "";
- /// <summary>
- /// 附加1(%)
- /// </summary>
- private decimal? attachPercent = null;
- /// <summary>
- /// 附加2(支)
- /// </summary>
- private decimal? attachCount = null;
- /// <summary>
- /// 前几炉
- /// </summary>
- private decimal? topStove = null;
- /// <summary>
- /// 循环值
- /// </summary>
- private decimal? loopValue = null;
- /// <summary>
- /// ORD_LN_PK(ORD_PK+三位流失号)
- /// </summary>
- private string ordLnPk = "";
- /// <summary>
- /// 序号
- /// </summary>
- private decimal? craftSeq = null;
- /// <summary>
- /// 工艺文件号
- /// </summary>
- [Description("工艺文件号")]
- [Nullable(false)]
- [DataLength(150)]
- public string CraftNo
- {
- get { return craftNo; }
- set { craftNo = value; }
- }
- /// <summary>
- /// 工序代码
- /// </summary>
- [Description("工序代码")]
- [Nullable(false)]
- [DataLength(100)]
- public string ProcessCode
- {
- get { return processCode; }
- set { processCode = value; }
- }
- /// <summary>
- /// 0;正常,1:首检增项
- /// </summary>
- [Description("0;正常,1:首检增项")]
- [Nullable(true)]
- [DataLength(2)]
- public string Type
- {
- get { return type; }
- set { type = value; }
- }
- /// <summary>
- /// 试样编号
- /// </summary>
- [Description("试样编号")]
- [Nullable(false)]
- [DataLength(10)]
- public string SplineNo
- {
- get { return splineNo; }
- set { splineNo = value; }
- }
- /// <summary>
- /// 取样码
- /// </summary>
- [Description("取样码")]
- [Nullable(false)]
- [DataLength(5)]
- public string PhyCodeMin
- {
- get { return phyCodeMin; }
- set { phyCodeMin = value; }
- }
- /// <summary>
- /// 取样码描述
- /// </summary>
- [Description("取样码描述")]
- [Nullable(false)]
- [DataLength(100)]
- public string PhyNameMin
- {
- get { return phyNameMin; }
- set { phyNameMin = value; }
- }
- /// <summary>
- /// 取样频率代码(4011)(组批要求,支数限制)
- /// </summary>
- [Description("取样频率代码(4011)(组批要求,支数限制)")]
- [Nullable(true)]
- [DataLength(20)]
- public string Rate
- {
- get { return rate; }
- set { rate = value; }
- }
- /// <summary>
- /// 取样频率描述
- /// </summary>
- [Description("取样频率描述")]
- [Nullable(true)]
- [DataLength(200)]
- public string DescRate
- {
- get { return descRate; }
- set { descRate = value; }
- }
- /// <summary>
- /// 分批单位(米/支/吨)
- /// </summary>
- [Description("分批单位(米/支/吨)")]
- [Nullable(true)]
- [DataLength(20)]
- public string BatchUnit
- {
- get { return batchUnit; }
- set { batchUnit = value; }
- }
- /// <summary>
- /// 每批支数 改成 分批数量
- /// </summary>
- [Description("每批支数 改成 分批数量")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? BatchCnt
- {
- get { return batchCnt; }
- set { batchCnt = value; }
- }
- /// <summary>
- /// 取样数量
- /// </summary>
- [Description("取样数量")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? DescCount
- {
- get { return descCount; }
- set { descCount = value; }
- }
- /// <summary>
- /// 试验样条数
- /// </summary>
- [Description("试验样条数")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? SampleCount
- {
- get { return sampleCount; }
- set { sampleCount = value; }
- }
- /// <summary>
- /// 取样位置代码(4012)
- /// </summary>
- [Description("取样位置代码(4012)")]
- [Nullable(true)]
- [DataLength(20)]
- public string Position
- {
- get { return position; }
- set { position = value; }
- }
- /// <summary>
- /// 取样位置描述
- /// </summary>
- [Description("取样位置描述")]
- [Nullable(true)]
- [DataLength(200)]
- public string DescPosition
- {
- get { return descPosition; }
- set { descPosition = value; }
- }
- /// <summary>
- /// 取样长度代码
- /// </summary>
- [Description("取样长度代码")]
- [Nullable(true)]
- [DataLength(20)]
- public string Length
- {
- get { return length; }
- set { length = value; }
- }
- /// <summary>
- /// 取样宽度
- /// </summary>
- [Description("取样宽度")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? Width
- {
- get { return width; }
- set { width = value; }
- }
- /// <summary>
- /// 样片类型( 环 或 片)(COM_BASE_SPLINE)
- /// </summary>
- [Description("样片类型( 环 或 片)(COM_BASE_SPLINE)")]
- [Nullable(true)]
- [DataLength(6)]
- public string SampleStyle
- {
- get { return sampleStyle; }
- set { sampleStyle = value; }
- }
- /// <summary>
- /// 样片类型描述
- /// </summary>
- [Description("样片类型描述")]
- [Nullable(true)]
- [DataLength(16)]
- public string SampleStyleDesc
- {
- get { return sampleStyleDesc; }
- set { sampleStyleDesc = value; }
- }
- /// <summary>
- /// 试样组代码
- /// </summary>
- [Description("试样组代码")]
- [Nullable(false)]
- [DataLength(200)]
- public string PhyCodeGroup
- {
- get { return phyCodeGroup; }
- set { phyCodeGroup = value; }
- }
- /// <summary>
- /// 试样组代码描述
- /// </summary>
- [Description("试样组代码描述")]
- [Nullable(false)]
- [DataLength(200)]
- public string PhyNameGroup
- {
- get { return phyNameGroup; }
- set { phyNameGroup = value; }
- }
- /// <summary>
- /// 附加1(%)
- /// </summary>
- [Description("附加1(%)")]
- [Nullable(true)]
- [DataLength(5)]
- public decimal? AttachPercent
- {
- get { return attachPercent; }
- set { attachPercent = value; }
- }
- /// <summary>
- /// 附加2(支)
- /// </summary>
- [Description("附加2(支)")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? AttachCount
- {
- get { return attachCount; }
- set { attachCount = value; }
- }
- /// <summary>
- /// 前几炉
- /// </summary>
- [Description("前几炉")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? TopStove
- {
- get { return topStove; }
- set { topStove = value; }
- }
- /// <summary>
- /// 循环值
- /// </summary>
- [Description("循环值")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? LoopValue
- {
- get { return loopValue; }
- set { loopValue = value; }
- }
- /// <summary>
- /// ORD_LN_PK(ORD_PK+三位流失号)
- /// </summary>
- [Description("ORD_LN_PK(ORD_PK+三位流失号)")]
- [Nullable(true)]
- [DataLength(40)]
- public string OrdLnPk
- {
- get { return ordLnPk; }
- set { ordLnPk = value; }
- }
- /// <summary>
- /// 序号
- /// </summary>
- [Description("序号")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? CraftSeq
- {
- get { return craftSeq; }
- set { craftSeq = value; }
- }
- }
- }
|