using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application.Service.BookingPrintTemplate.Dto { public class BookingPrinttemplateRightDto { /// /// 人员id(废弃,使用UserIdList字段,支持批量) /// public long SysUserId { get; set; } /// /// 人员id的列表 /// public List UserIdList { get; set; } public List PrintTemplateId { get; set; } } public class BookingPrinttemplateDto { public long Id { get; set; } public long PrintTemplateId { get; set; } public long SysUserId { get; set; } public string TypeCode { get; set; } public string TypeName { get; set; } public string FilePath { get; set; } public string FileName { get; set; } public string TenantName { get; set; } public string UserName { get; set; } public string DisplayName { get; set; } public string CateCode { get; set; } public string CateName { get; set; } public string Type { get; set; } } }