| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using Core.Mes.Client.Comm.Attribute;
- namespace Core.StlMes.Client.Mcp.Mch.Mcms.entity
- {
- /// <summary>
- /// 数据库表CMM_RECORD_TEMPLATE所对应的实体类(生成工具:代码生成工具3.0)
- /// 作者:朱少波 时间:2020-11-12
- /// </summary>
- public class CmmRecordTemplateEntity
- {
- /// <summary>
- /// 模板流水号 YYYYMMDD + 3位流水
- /// </summary>
- private string templateNo = "";
- /// <summary>
- /// 模板名
- /// </summary>
- private string templateName = "";
- /// <summary>
- /// 模板适用磅房编码
- /// </summary>
- private string templateLocation = "";
- /// <summary>
- /// 模板关键字
- /// </summary>
- private string templateKey = "";
- /// <summary>
- /// 模板转化的xml文件
- /// </summary>
- private string templateXml = "";
- /// <summary>
- /// 作废时间
- /// </summary>
- private string deleteDate = "";
- /// <summary>
- /// 作废人
- /// </summary>
- private string deleteUser = "";
- /// <summary>
- /// 有效标志(1:有效,0:无效)
- /// </summary>
- private string validflag = "";
- /// <summary>
- /// 创建人
- /// </summary>
- private string createUser = "";
- /// <summary>
- /// 创建时间
- /// </summary>
- private string createDate = "";
- /// <summary>
- /// 模板流水号 YYYYMMDD + 3位流水
- /// </summary>
- [Description("模板流水号 YYYYMMDD + 3位流水")]
- [Nullable(true)]
- [DataLength(20)]
- public string TemplateNo
- {
- get { return templateNo; }
- set { templateNo = value; }
- }
- /// <summary>
- /// 模板名
- /// </summary>
- [Description("模板名")]
- [Nullable(true)]
- [DataLength(40)]
- public string TemplateName
- {
- get { return templateName; }
- set { templateName = value; }
- }
- /// <summary>
- /// 模板适用磅房编码
- /// </summary>
- [Description("模板适用磅房编码")]
- [Nullable(true)]
- [DataLength(10)]
- public string TemplateLocation
- {
- get { return templateLocation; }
- set { templateLocation = value; }
- }
- /// <summary>
- /// 模板关键字
- /// </summary>
- [Description("模板关键字")]
- [Nullable(true)]
- [DataLength(10)]
- public string TemplateKey
- {
- get { return templateKey; }
- set { templateKey = value; }
- }
- /// <summary>
- /// 模板转化的xml文件
- /// </summary>
- [Description("模板转化的xml文件")]
- [Nullable(true)]
- [DataLength(4000)]
- public string TemplateXml
- {
- get { return templateXml; }
- set { templateXml = value; }
- }
- /// <summary>
- /// 作废时间
- /// </summary>
- [Description("作废时间")]
- [Nullable(true)]
- public string DeleteDate
- {
- get { return deleteDate; }
- set { deleteDate = value; }
- }
- /// <summary>
- /// 作废人
- /// </summary>
- [Description("作废人")]
- [Nullable(true)]
- [DataLength(10)]
- public string DeleteUser
- {
- get { return deleteUser; }
- set { deleteUser = value; }
- }
- /// <summary>
- /// 有效标志(1:有效,0:无效)
- /// </summary>
- [Description("有效标志(1:有效,0:无效)")]
- [Nullable(false)]
- [DataLength(1)]
- public string Validflag
- {
- get { return validflag; }
- set { validflag = value; }
- }
- /// <summary>
- /// 创建人
- /// </summary>
- [Description("创建人")]
- [Nullable(true)]
- [DataLength(10)]
- public string CreateUser
- {
- get { return createUser; }
- set { createUser = value; }
- }
- /// <summary>
- /// 创建时间
- /// </summary>
- [Description("创建时间")]
- [Nullable(true)]
- public string CreateDate
- {
- get { return createDate; }
- set { createDate = value; }
- }
- public override string ToString()
- {
- return base.ToString();
- }
- }
- }
|