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.
66 lines
1.4 KiB
66 lines
1.4 KiB
9 months ago
|
using System;
|
||
|
using System.ComponentModel;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
||
|
namespace RoadFlow.Data.Model
|
||
|
{
|
||
|
[Serializable]
|
||
|
public class UsersApp
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// ID
|
||
|
/// </summary>
|
||
|
[DisplayName("ID")]
|
||
|
public string ID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 用户ID
|
||
|
/// </summary>
|
||
|
[DisplayName("用户ID")]
|
||
|
public string UserID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 上级ID
|
||
|
/// </summary>
|
||
|
[DisplayName("上级ID")]
|
||
|
public string ParentID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 角色ID
|
||
|
/// </summary>
|
||
|
[DisplayName("角色ID")]
|
||
|
public string RoleID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 应用ID
|
||
|
/// </summary>
|
||
|
[DisplayName("应用ID")]
|
||
|
public Guid? AppID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 应用标题
|
||
|
/// </summary>
|
||
|
[DisplayName("应用标题")]
|
||
|
public string Title { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 参数
|
||
|
/// </summary>
|
||
|
[DisplayName("参数")]
|
||
|
public string Params { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 图标
|
||
|
/// </summary>
|
||
|
[DisplayName("图标")]
|
||
|
public string Ico { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 序号
|
||
|
/// </summary>
|
||
|
[DisplayName("序号")]
|
||
|
public int Sort { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|