using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.Group;
///
/// 创建分组输入.
///
[SuppressSniffer]
public class GroupCrInput
{
///
/// 分组编码.
///
public string enCode { get; set; }
///
/// 分组名称.
///
public string fullName { get; set; }
///
/// 描述.
///
public string description { get; set; }
///
/// 分组类型.
///
public string type { get; set; }
///
/// 有效标志.
///
public int? enabledMark { get; set; }
///
/// 排序.
///
public long? sortCode { get; set; }
}