using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using Volo.Abp.Application.Dtos; namespace Business.PrintTemplateManagement.Dto { public class CreateOrUpdatePrintTemplateDto: EntityDto { /// /// 模板名称 /// [Required] public string Name { get; set; } /// /// 模板类型 /// [Required] public int TempType { get; set; } /// /// 默认 /// [Required] public bool IsDefault { get; set; } /// /// 状态 /// [Required] public int Status { get; set; } /// /// 排序 /// [Required] public int Sort { get; set; } /// /// 模板内容 /// public string Content { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 打印方向 /// public int? Orientation { get; set; } /// /// 纸张类型 /// public int? PaperKind { get; set; } /// /// 纸张宽度 /// public string PaperWidth { get; set; } /// /// 纸张高度 /// public string PaperHeight { get; set; } } }