using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.PrintDev; /// /// 打印模板创建输入. /// [SuppressSniffer] public class PrintDevCrInput { /// /// 名称. /// public string fullName { get; set; } /// /// 编码. /// public string enCode { get; set; } /// /// 分类. /// public string category { get; set; } /// /// 状态. /// public int? enabledMark { get; set; } /// /// 类型(1:流程表单,2:功能表单). /// public int? type { get; set; } /// /// 描述. /// public string description { get; set; } /// /// 排序. /// public long? sortCode { get; set; } /// /// 数据连接id. /// public string dbLinkId { get; set; } /// /// sql模板. /// public string sqlTemplate { get; set; } /// /// 左侧字段. /// public string leftFields { get; set; } /// /// 打印模板. /// public string printTemplate { get; set; } /// /// 纸张参数. /// public string pageParam { get; set; } }