You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BookingHeChuan/Myshipping.Application/Service/BookingPrintTemplate/Dto/BookingPrinttemplateRightDt...

47 lines
1.2 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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
{
/// <summary>
/// 人员id废弃使用UserIdList字段支持批量
/// </summary>
public long SysUserId { get; set; }
/// <summary>
/// 人员id的列表
/// </summary>
public List<long> UserIdList { get; set; }
public List<long> 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; }
}
}