You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
664 B
23 lines
664 B
using System;
|
|
using SqlSugar;
|
|
using System.ComponentModel;
|
|
using GDZZ.Core.Entity;
|
|
namespace GDZZ.Application
|
|
{
|
|
/// <summary>
|
|
/// 业务用户关联表
|
|
/// </summary>
|
|
[SugarTable("baseuser_sysuser_scope")]
|
|
[Description("业务用户关联表")]
|
|
public class UserScope
|
|
{
|
|
/// <summary>
|
|
/// 业务用户ID
|
|
/// </summary>
|
|
public long BaseUserID { get; set; }
|
|
/// <summary>
|
|
/// 系统用户ID
|
|
/// </summary>
|
|
public long SysUserID { get; set; }
|
|
}
|
|
} |