using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.System.System
{
///
/// 系统功能创建输入.
///
[SuppressSniffer]
public class SystemCrInput
{
///
/// id.
///
public string id { get; set; }
///
/// 名称.
///
public string fullName { get; set; }
///
/// 编码.
///
public string enCode { get; set; }
///
/// 图标.
///
public string icon { get; set; }
///
/// 状态(1-可用,0-禁用).
///
public int? enabledMark { get; set; }
///
/// 说明.
///
public string description { get; set; }
///
/// 排序.
///
public long? sortCode { get; set; }
///
/// 扩展字段.
///
public string propertyJson { get; set; }
}
}