using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ICSSoft.Entity { /// /// "管控方式"实体类 /// public class ControlMode { /// /// 类型编号 /// public string itemCode { get; set; } /// /// 类型名称 /// public string itemName { get; set; } /// /// 当前状态(1为启用,0为不启用) /// public string enableMark { get; set; } } }