using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HStation.WinFrmUI.Auth
{
public class RoleViewModel
{
public RoleViewModel() { }
///
/// id
///
public long id { get; set; }
///
/// 客户id
///
public long CorpID { get; set; }
///
/// 名称
///
[SugarColumn(Length = 50, IsNullable = true)]
public string Name { get; set; }
///
/// 编码
///
[SugarColumn(Length = 100, IsNullable = true)]
public string Code { get; set; }
///
/// 使用状态
///
public int UseStatus { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
/// 说明
///
[SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
public string Description { get; set; }
}
}