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.SaleBase.model { /// /// 数据库表SLM_ORDER_REVIEW_ITEM_SIGN所对应的实体类(生成工具:代码生成工具3.0) /// 作者:LAPTOP-I2IGVKJC 时间:2021-12-26 /// public class SlmOrderReviewItemSignEntity { /// /// 无注释 /// private string id = ""; /// /// 评审项目(T技术;D交货期;P价格;F法务) /// private string reviewItm = ""; /// /// 明细类型(H合同头;L合同行;D交货行) /// private string listTyp = ""; /// /// 评审次数(四位流水号,从0001开始) /// private string reviewTimes = ""; /// /// 评审人 /// private string reviewMan = ""; /// /// 评审单位 /// private string reviewDept = ""; /// /// 附件名 /// private string certPath = ""; /// /// 附件相对路径 /// private string certPathOld = ""; /// /// 是否有效 /// private string validflag = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 删除人 /// private string deleteName = ""; /// /// 删除时间 /// private string deleteTime = ""; /// /// 无注释 /// [Description("无注释")] [Nullable(false)] [DataLength(64)] public string Id { get { return id; } set { id = value; } } /// /// 评审项目(T技术;D交货期;P价格;F法务) /// [Description("评审项目")] [Nullable(true)] [DataLength(1)] public string ReviewItm { get { return reviewItm; } set { reviewItm = value; } } /// /// 明细类型(H合同头;L合同行;D交货行) /// [Description("明细类型")] [Nullable(true)] [DataLength(1)] public string ListTyp { get { return listTyp; } set { listTyp = value; } } /// /// 评审次数(四位流水号,从0001开始) /// [Description("评审次数")] [Nullable(true)] [DataLength(4)] public string ReviewTimes { get { return reviewTimes; } set { reviewTimes = value; } } /// /// 评审人 /// [Description("评审人")] [Nullable(true)] [DataLength(20)] public string ReviewMan { get { return reviewMan; } set { reviewMan = value; } } /// /// 评审单位 /// [Description("评审单位")] [Nullable(true)] [DataLength(100)] public string ReviewDept { get { return reviewDept; } set { reviewDept = value; } } /// /// 附件名 /// [Description("附件名")] [Nullable(true)] [DataLength(64)] public string CertPath { get { return certPath; } set { certPath = value; } } /// /// 附件相对路径 /// [Description("附件相对路径")] [Nullable(true)] [DataLength(200)] public string CertPathOld { get { return certPathOld; } set { certPathOld = value; } } /// /// 是否有效 /// [Description("是否有效")] [Nullable(true)] [DataLength(1)] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 创建人 /// [Description("创建人")] [Nullable(true)] [DataLength(20)] public string CreateName { get { return createName; } set { createName = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(true)] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 修改人 /// [Description("修改人")] [Nullable(true)] [DataLength(20)] public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// [Description("修改时间")] [Nullable(true)] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 删除人 /// [Description("删除人")] [Nullable(true)] [DataLength(20)] public string DeleteName { get { return deleteName; } set { deleteName = value; } } /// /// 删除时间 /// [Description("删除时间")] [Nullable(true)] public string DeleteTime { get { return deleteTime; } set { deleteTime = value; } } } }