Ent_User.cs 703 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MES.Production.Entity.Model
  7. {
  8. public class Ent_User
  9. {
  10. public int ID
  11. {
  12. get; set;
  13. }
  14. public string ACCOUNT
  15. {
  16. get; set;
  17. }
  18. public string NAME
  19. {
  20. get; set;
  21. }
  22. public string DPTNAME
  23. {
  24. get; set;
  25. }
  26. public string POSTNAME
  27. {
  28. get; set;
  29. }
  30. public string ROLENAME
  31. {
  32. get; set;
  33. }
  34. public string ISCANLOGIN
  35. {
  36. get; set;
  37. }
  38. }
  39. }