| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- 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.Data.PipeAndOutdec.封装类.实体类
- {
- /// <summary>
- /// 数据库表PIPE_CHECKCONSIGN_SPLINECODE所对应的实体类(生成工具:代码生成工具3.0)
- /// 作者:DM22222 时间:2018-05-29
- /// </summary>
- public class PipeCheckconsignSplinecodeEntity
- {
- /// <summary>
- /// 检验项目明细编号
- /// </summary>
- private string physplineId = "";
- /// <summary>
- /// 检验编号
- /// </summary>
- private string checkNo = "";
- /// <summary>
- /// 试样号
- /// </summary>
- private string sampleNo = "";
- /// <summary>
- /// 试样组代码
- /// </summary>
- private string phyCodeMax = "";
- /// <summary>
- /// 试样组名称
- /// </summary>
- private string phyNameMax = "";
- /// <summary>
- /// 样条码(4位\同一试样组下样条码一致,除硫化氢末尾1--4 纵向末尾T 其他0)
- /// </summary>
- private string sampleBarcode = "";
- /// <summary>
- /// 年月
- /// </summary>
- private string balYearMoth = "";
- /// <summary>
- /// 十进制数值
- /// </summary>
- private decimal? tenNum = null;
- /// <summary>
- /// 检验项目明细编号
- /// </summary>
- [Description("检验项目明细编号")]
- [Nullable(false)]
- [DataLength(50)]
- public string PhysplineId
- {
- get { return physplineId; }
- set { physplineId = value; }
- }
- /// <summary>
- /// 检验编号
- /// </summary>
- [Description("检验编号")]
- [Nullable(true)]
- [DataLength(50)]
- public string CheckNo
- {
- get { return checkNo; }
- set { checkNo = value; }
- }
- /// <summary>
- /// 试样号
- /// </summary>
- [Description("试样号")]
- [Nullable(true)]
- [DataLength(50)]
- public string SampleNo
- {
- get { return sampleNo; }
- set { sampleNo = value; }
- }
- /// <summary>
- /// 试样组代码
- /// </summary>
- [Description("试样组代码")]
- [Nullable(true)]
- [DataLength(50)]
- public string PhyCodeMax
- {
- get { return phyCodeMax; }
- set { phyCodeMax = value; }
- }
- /// <summary>
- /// 试样组名称
- /// </summary>
- [Description("试样组名称")]
- [Nullable(true)]
- [DataLength(100)]
- public string PhyNameMax
- {
- get { return phyNameMax; }
- set { phyNameMax = value; }
- }
- /// <summary>
- /// 样条码(4位\同一试样组下样条码一致,除硫化氢末尾1--4 纵向末尾T 其他0)
- /// </summary>
- [Description("样条码")]
- [Nullable(true)]
- [DataLength(50)]
- public string SampleBarcode
- {
- get { return sampleBarcode; }
- set { sampleBarcode = value; }
- }
- /// <summary>
- /// 年月
- /// </summary>
- [Description("年月")]
- [Nullable(true)]
- [DataLength(6)]
- public string BalYearMoth
- {
- get { return balYearMoth; }
- set { balYearMoth = value; }
- }
- /// <summary>
- /// 十进制数值
- /// </summary>
- [Description("十进制数值")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? TenNum
- {
- get { return tenNum; }
- set { tenNum = value; }
- }
- }
- }
|