You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
639 B
28 lines
639 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ICSSoft.Entity
|
|
{
|
|
/// <summary>
|
|
/// "管控方式"实体类
|
|
/// </summary>
|
|
public class ControlMode
|
|
{
|
|
/// <summary>
|
|
/// 类型编号
|
|
/// </summary>
|
|
public string itemCode { get; set; }
|
|
/// <summary>
|
|
/// 类型名称
|
|
/// </summary>
|
|
public string itemName { get; set; }
|
|
/// <summary>
|
|
/// 当前状态(1为启用,0为不启用)
|
|
/// </summary>
|
|
public string enableMark { get; set; }
|
|
|
|
}
|
|
}
|