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...

36 lines
876 B
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
/// </summary>
public long SysUserId { 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; }
}
}