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

20 lines
352 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")]
2021-11-27 09:43:04 +08:00
[Tenant("0")]
2021-08-23 16:57:25 +08:00
public class SysUserPost
{
public long UserId { get; set; }
public long PostId { get; set; }
}
}