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#

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; }
}
2 years ago
public class BookingPrinttemplateDto
{
public long Id { get; set; }
2 years ago
public long PrintTemplateId { get; set; }
2 years ago
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; }
2 years ago
public string DisplayName { get; set; }
public string CateCode { get; set; }
public string CateName { get; set; }
public string Type { get; set; }
2 years ago
}
}