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.

35 lines
675 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CounsellorBL
  6. {
  7. public class PrvilegeInfo
  8. {
  9. public string ID { get; set; }
  10. public string NAME { get; set; }
  11. public string CONTENT { get; set; }
  12. public string PRIVILEGETYPE { get; set; }
  13. public int SORT { get; set; }
  14. public string PARENTID { get; set; }
  15. public bool ISLEAF { get; set; }
  16. public string BTN_LOG_FLAG { get; set; }
  17. public PrvilegeInfo()
  18. {
  19. PARENTID = "-1";
  20. ID = "-1";
  21. CONTENT = "";
  22. BTN_LOG_FLAG = "N";
  23. }
  24. }
  25. }