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/SysEmp.cs

31 lines
587 B
C#

using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace Myshipping.Core.Entity;
/// <summary>
/// 员工表
/// </summary>
[SugarTable("sys_emp")]
[Description("员工表")]
public class SysEmp : PrimaryKeyEntity
{
/// <summary>
/// 工号
/// </summary>
[MaxLength(30)]
public string JobNum { get; set; }
/// <summary>
/// 机构Id
/// </summary>
public long OrgId { get; set; }
/// <summary>
/// 机构名称
/// </summary>
[MaxLength(50)]
public string OrgName { get; set; }
}