using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace MES.Service.Modes
{
///
/// 用户角色记录
///
[SugarTable("SYS_USER_ROLE")]
public class SysUserRole
{
///
///
///
[SugarColumn(ColumnName="ID" ,IsPrimaryKey = true )]
public decimal Id { get; set; }
///
///
///
[SugarColumn(ColumnName="USERID" )]
public string? Userid { get; set; }
///
///
///
[SugarColumn(ColumnName="ROLEID" )]
public decimal? Roleid { get; set; }
///
///
///
[SugarColumn(ColumnName="CREATE_BY" )]
public string CreateBy { get; set; }
///
///
///
[SugarColumn(ColumnName="CREATE_DATE" )]
public DateTime? CreateDate { get; set; }
///
///
///
[SugarColumn(ColumnName="LASTUPDATE_BY" )]
public string LastupdateBy { get; set; }
///
///
///
[SugarColumn(ColumnName="LASTUPDATE_DATE" )]
public DateTime? LastupdateDate { get; set; }
///
///
///
[SugarColumn(ColumnName="REMARK" )]
public string Remark { get; set; }
///
///
///
[SugarColumn(ColumnName="DEPOT_ID" )]
public decimal? DepotId { get; set; }
}
}