集成,总结MES功能
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.
 
 
 
 

28 lines
599 B

  1. namespace BPA.MES.Base.Application
  2. {
  3. /// <summary>
  4. /// 名 称 :授权信息输出
  5. /// 创 建 人 :yangxiao
  6. /// 创建时间 : 2023/1/4 17:24:21
  7. /// 描 述 :
  8. /// </summary>
  9. public class AuthorizeOutput
  10. {
  11. /// <summary>
  12. /// 编号
  13. /// </summary>
  14. public string Id { get; set; }
  15. /// <summary>
  16. /// 名称
  17. /// </summary>
  18. public string Name { get; set; }
  19. /// <summary>
  20. /// 已授权
  21. /// </summary>
  22. public bool IsAuthorized { get; set; }
  23. }
  24. }