Files
shgx_tz_mes_backend_sync/ZR.Model/System/SysUserPost.cs

19 lines
334 B
C#
Raw Normal View History

2021-08-23 16:57:25 +08:00
using System;
using System.Collections.Generic;
using System.Text;
using SqlSugar;
namespace ZR.Model.System
{
/// <summary>
/// 用户岗位
/// </summary>
[SugarTable("sys_user_post")]
public class SysUserPost
{
public long UserId { get; set; }
public long PostId { get; set; }
}
}