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/Entity/BookingPrinttemplateRight.cs

23 lines
605 B
C#

using System;
using SqlSugar;
using System.ComponentModel;
using Myshipping.Core.Entity;
namespace Myshipping.Application.Entity
{
/// <summary>
/// 订舱打印模板权限表
/// </summary>
[SugarTable("booking_print_templateright")]
[Description("订舱打印模板权限表")]
public class BookingPrinttemplateRight : PrimaryKeyEntity
{
/// <summary>
/// 人员id
/// </summary>
public long SysUserId { get; set; }
/// <summary>
/// 模板id
/// </summary>
public long PrintTemplateId { get; set; }
}
}