using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using Newtonsoft.Json; namespace Core.StlMes.Client.Mcp.Control.Entity { public class SelectEditEntity { /// /// 基础分类编码 /// private string basecode = ""; /// /// 基础分类名称 /// private string basename = ""; [Description("选择")] [JsonProperty("Chk")] public bool Chk { get; set; } /// /// 基础分类编码 /// [Description("基础分类编码")] [JsonProperty("basecode")] public string Basecode { get { return basecode; } set { basecode = value; } } /// /// 基础分类名称 /// [Description("基础分类名称")] [JsonProperty("basename")] public string Basename { get { return basename; } set { basename = value; } } } }