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.封装类.实体类 { /// /// 数据库表COM_BASE_PHY_C所对应的实体类(生成工具:代码生成工具3.0) /// 作者:LAPTOP-I2IGVKJC 时间:2021-04-27 /// public class ComBasePhyCEntity { /// /// 材质小类代码 /// private string phyCode = ""; /// /// 材质小类描述 /// private string phyType = ""; /// /// 材质大类代码(A:拉伸,B:冲击,C:硬度....) /// private string phyTypeM = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 删除人 /// private string deleteName = ""; /// /// 删除时间 /// private string deleteTime = ""; /// /// 有效标志(1:有效,0:无效) /// private string validflag = ""; /// /// 备注 /// private string memo = ""; /// /// 试验科室ID集合 以逗号分隔 /// private string phyDeptid = ""; /// /// 试验科室Name集合 以逗号分隔 /// private string phyDeptname = ""; /// /// 序号 /// private decimal? orderSeq = null; /// /// 样条数 /// private decimal? splineCount = null; /// /// 材质小类代码 /// [Description("编码")] [Nullable(false)] [DataLength(5)] public string PhyCode { get { return phyCode; } set { phyCode = value; } } /// /// 材质小类描述 /// [Description("名称")] [Nullable(false)] [DataLength(100)] public string PhyType { get { return phyType; } set { phyType = value; } } /// /// 材质大类代码(A:拉伸,B:冲击,C:硬度....) /// [Description("材质大类代码(A:拉伸,B:冲击,C:硬度....)")] [Nullable(false)] [DataLength(20)] public string PhyTypeM { get { return phyTypeM; } set { phyTypeM = 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; } } /// /// 有效标志(1:有效,0:无效) /// [Description("有效标志(1:有效,0:无效)")] [Nullable(false)] [DataLength(1)] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(500)] public string Memo { get { return memo; } set { memo = value; } } /// /// 试验科室ID集合 以逗号分隔 /// [Description("试验科室ID集合 以逗号分隔")] [Nullable(true)] [DataLength(100)] public string PhyDeptid { get { return phyDeptid; } set { phyDeptid = value; } } /// /// 试验科室Name集合 以逗号分隔 /// [Description("试验科室Name集合 以逗号分隔")] [Nullable(true)] [DataLength(200)] public string PhyDeptname { get { return phyDeptname; } set { phyDeptname = value; } } /// /// 序号 /// [Description("序号")] [Nullable(true)] [DataLength(22)] public decimal? OrderSeq { get { return orderSeq; } set { orderSeq = value; } } /// /// 样条数 /// [Description("样条数")] [Nullable(true)] [DataLength(22)] public decimal? SplineCount { get { return splineCount; } set { splineCount = value; } } } }