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