终端一体化运控平台
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.
 
 
 

29 lines
631 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace FryPot_DosingSystem.Model
  7. {
  8. internal class UserManage
  9. {
  10. public List<UserInfo> userInfos { get; set; } = new List<UserInfo>();
  11. }
  12. public class UserInfo
  13. {
  14. public Authority Authority { get; set; }
  15. public string UserName { get; set; }
  16. public string Password { get; set; }
  17. public string UserId { get; set; }
  18. }
  19. public enum Authority
  20. {
  21. 管理员 = 1,
  22. 操作员 = 2,
  23. 观察员 = 3,
  24. 技术员 = 4
  25. }
  26. }