using JNPF.DependencyInjection;
using JNPF.Systems.Entitys.Model.Organize;
namespace JNPF.Systems.Entitys.Dto.Organize;
///
/// 新增机构输入.
///
[SuppressSniffer]
public class OrganizeCrInput
{
///
/// 上级ID.
///
public string parentId { get; set; }
///
/// 公司名称.
///
public string fullName { get; set; }
///
/// 公司编码.
///
public string enCode { get; set; }
///
/// 描述.
///
public string description { get; set; }
///
/// 状态.
///
public int? enabledMark { get; set; }
///
/// 扩展属性.
///
public OrganizePropertyModel propertyJson { get; set; }
///
/// 排序.
///
public long? sortCode { get; set; }
}