using SqlSugar;
|
using System;
|
|
namespace JiepeiWMS.Model.Models
|
{
|
/// <summary>
|
/// 用户跟角色关联表
|
/// </summary>
|
public class UserRole : RootEntity
|
{
|
public UserRole() { }
|
|
public UserRole(int uid, int rid)
|
{
|
UserId = uid;
|
RoleId = rid;
|
CreateTime = DateTime.Now;
|
IsDeleted = false;
|
CreateId = uid;
|
CreateTime = DateTime.Now;
|
}
|
|
|
|
/// <summary>
|
///获取或设置是否禁用,逻辑上的删除,非物理删除
|
/// </summary>
|
[SugarColumn(IsNullable = true)]
|
public bool? IsDeleted { get; set; }
|
/// <summary>
|
/// 用户ID
|
/// </summary>
|
public int UserId { get; set; }
|
/// <summary>
|
/// 角色ID
|
/// </summary>
|
public int RoleId { get; set; }
|
/// <summary>
|
/// 创建ID
|
/// </summary>
|
[SugarColumn(IsNullable = true)]
|
public int? CreateId { get; set; }
|
/// <summary>
|
/// 创建者
|
/// </summary>
|
[SugarColumn(ColumnDataType ="nvarchar",Length = 50, IsNullable = true)]
|
public string CreateBy { get; set; }
|
/// <summary>
|
/// 创建时间
|
/// </summary>
|
[SugarColumn(IsNullable = true)]
|
public DateTime? CreateTime { get; set; }
|
/// <summary>
|
/// 修改ID
|
/// </summary>
|
[SugarColumn(IsNullable = true)]
|
public int? ModifyId { get; set; }
|
/// <summary>
|
/// 修改者
|
/// </summary>
|
[SugarColumn(ColumnDataType ="nvarchar",Length = 50, IsNullable = true)]
|
public string ModifyBy { get; set; }
|
/// <summary>
|
/// 修改时间
|
/// </summary>
|
[SugarColumn(IsNullable = true)]
|
public DateTime? ModifyTime { get; set; }
|
|
}
|
}
|