20 lines
353 B
C#
20 lines
353 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using SqlSugar;
|
|
|
|
namespace ARW.Model.System
|
|
{
|
|
|
|
/// <summary>
|
|
/// 用户岗位
|
|
/// </summary>
|
|
[SugarTable("sys_user_post")]
|
|
[Tenant("0")]
|
|
public class SysUserPost
|
|
{
|
|
public long UserId { get; set; }
|
|
public long PostId { get; set; }
|
|
}
|
|
}
|