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.Mcp.Treatment.Entity { /// /// 数据库表HTT_COUPLING所对应的实体类(生成工具:代码生成工具3.0) /// 作者:LAPTOP-I2IGVKJC 时间:2021-05-14 /// public class HttCouplingEntity { /// /// id /// private string id = ""; /// /// 机床 /// private string machine = ""; /// /// 规格 /// private string specifications = ""; /// /// 钢级 /// private string steel = ""; /// /// 扣型 /// private string modelType = ""; /// /// 车丝系数 /// private string carSilkCoefficient = ""; /// /// 切管系数 /// private string cuttingPipeCoefficient = ""; /// /// 磷化系数 /// private string phosphatingCoefficient = ""; /// /// 车丝钢级 /// private string carSilkSteel = ""; /// /// 切管钢级 /// private string cuttingPipeSteel = ""; /// /// 磷化钢级 /// private string phosphatingSteel = ""; /// /// 镀层 /// private string plating = ""; /// /// 创建人 /// 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 /// [Description("id")] [Nullable(false)] [DataLength(64)] public string Id { get { return id; } set { id = value; } } /// /// 机床 /// [Description("机床")] [Nullable(true)] [DataLength(255)] public string Machine { get { return machine; } set { machine = value; } } /// /// 规格 /// [Description("规格")] [Nullable(true)] [DataLength(255)] public string Specifications { get { return specifications; } set { specifications = value; } } /// /// 钢级 /// [Description("钢级")] [Nullable(true)] [DataLength(255)] public string Steel { get { return steel; } set { steel = value; } } /// /// 扣型 /// [Description("扣型")] [Nullable(true)] [DataLength(255)] public string ModelType { get { return modelType; } set { modelType = value; } } /// /// 车丝系数 /// [Description("车丝系数")] [Nullable(true)] [DataLength(255)] public string CarSilkCoefficient { get { return carSilkCoefficient; } set { carSilkCoefficient = value; } } /// /// 切管系数 /// [Description("切管系数")] [Nullable(true)] [DataLength(255)] public string CuttingPipeCoefficient { get { return cuttingPipeCoefficient; } set { cuttingPipeCoefficient = value; } } /// /// 磷化系数 /// [Description("磷化系数")] [Nullable(true)] [DataLength(255)] public string PhosphatingCoefficient { get { return phosphatingCoefficient; } set { phosphatingCoefficient = value; } } /// /// 车丝钢级 /// [Description("车丝钢级")] [Nullable(true)] [DataLength(255)] public string CarSilkSteel { get { return carSilkSteel; } set { carSilkSteel = value; } } /// /// 切管钢级 /// [Description("切管钢级")] [Nullable(true)] [DataLength(255)] public string CuttingPipeSteel { get { return cuttingPipeSteel; } set { cuttingPipeSteel = value; } } /// /// 磷化钢级 /// [Description("磷化钢级")] [Nullable(true)] [DataLength(255)] public string PhosphatingSteel { get { return phosphatingSteel; } set { phosphatingSteel = value; } } /// /// 镀层 /// [Description("镀层")] [Nullable(true)] [DataLength(255)] public string Plating { get { return plating; } set { plating = 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("有效标志")] [Nullable(false)] [DataLength(1)] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(200)] public string Memo { get { return memo; } set { memo = value; } } } }