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

27 lines
416 B
C#

using SqlSugar;
using System.ComponentModel;
namespace Myshipping.Core.Entity;
/// <summary>
/// 员工职位表
/// </summary>
[SugarTable("sys_emp_pos")]
[Description("员工职位表")]
public class SysEmpPos
{
/// <summary>
/// 员工Id
/// </summary>
public long SysEmpId { get; set; }
/// <summary>
/// 职位Id
/// </summary>
public long SysPosId { get; set; }
}