| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- 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
- {
- /// <summary>
- /// 基础分类编码
- /// </summary>
- private string basecode = "";
- /// <summary>
- /// 基础分类名称
- /// </summary>
- private string basename = "";
- [Description("选择")]
- [JsonProperty("Chk")]
- public bool Chk { get; set; }
- /// <summary>
- /// 基础分类编码
- /// </summary>
- [Description("基础分类编码")]
- [JsonProperty("basecode")]
- public string Basecode
- {
- get { return basecode; }
- set { basecode = value; }
- }
- /// <summary>
- /// 基础分类名称
- /// </summary>
- [Description("基础分类名称")]
- [JsonProperty("basename")]
- public string Basename
- {
- get { return basename; }
- set { basename = value; }
- }
- }
- }
|