using System.ComponentModel; using Newtonsoft.Json; namespace Core.StlMes.Client.Mcp.Mch.Entity { /// /// 数据库表MCH_COM_SETPLINE所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2018-10-26 /// public class MchComSetplineEntity { public bool Chk { get; set; } /// /// 产线代码 /// private string plineCode = ""; /// /// 产线名称 /// private string plineName = ""; /// /// 工序点代码集合 /// private string stationCodes = ""; /// /// 工序点名称集合 /// private string stationNames = ""; /// /// 操作日期 /// private string userDate = ""; /// /// 操作人姓名 /// private string userName = ""; /// /// 离线去向 /// private string offlinePlace = ""; /// /// 产线代码 /// [Description("产线代码")] [JsonProperty("plineCode")] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 产线名称 /// [Description("产线名称")] [JsonProperty("plineName")] public string PlineName { get { return plineName; } set { plineName = value; } } /// /// 工序点代码集合 /// [Description("工序点代码集合")] [JsonProperty("stationCodes")] public string StationCodes { get { return stationCodes; } set { stationCodes = value; } } /// /// 工序点名称集合 /// [Description("工序点名称集合")] [JsonProperty("stationNames")] public string StationNames { get { return stationNames; } set { stationNames = value; } } /// /// 操作日期 /// [Description("操作日期")] [JsonProperty("userDate")] public string UserDate { get { return userDate; } set { userDate = value; } } /// /// 操作人姓名 /// [Description("操作人姓名")] [JsonProperty("userName")] public string UserName { get { return userName; } set { userName = value; } } /// /// 离线去向 /// [Description("离线去向")] [JsonProperty("offlinePlace")] public string OfflinePlace { get { return offlinePlace; } set { offlinePlace = value; } } } }