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.
|
- namespace BPA.MES.Base.Application
- {
- /// <summary>
- /// 名 称 :授权信息输出
- /// 创 建 人 :yangxiao
- /// 创建时间 : 2023/1/4 17:24:21
- /// 描 述 :
- /// </summary>
- public class AuthorizeOutput
- {
- /// <summary>
- /// 编号
- /// </summary>
- public string Id { get; set; }
-
- /// <summary>
- /// 名称
- /// </summary>
- public string Name { get; set; }
-
- /// <summary>
- /// 已授权
- /// </summary>
- public bool IsAuthorized { get; set; }
- }
-
- }
|