using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.ModuleDataAuthorize; /// /// 功能数据权限创建输入. /// [SuppressSniffer] public class ModuleDataAuthorizeCrInput { /// /// 功能主键. /// public string moduleId { get; set; } /// /// 字段名称. /// public string enCode { get; set; } /// /// 字段注解. /// public string fullName { get; set; } /// /// 字段类型. /// public string type { get; set; } /// /// 条件符号. /// public string conditionSymbol { get; set; } /// /// 条件内容. /// public string conditionText { get; set; } /// /// 字段说明. /// public string description { get; set; } /// /// 规则(0:主表,1:副表). /// public int? fieldRule { get; set; } /// /// 绑定表格. /// public string bindTable { get; set; } /// /// 子表控件. /// public string childTableKey { get; set; } }