TreeViewEntity.cs 541 B

123456789101112131415161718192021222324252627
  1. namespace Core.StlMes.Client.Qcm.model
  2. {
  3. public class TreeViewEntity
  4. {
  5. private string code = "";
  6. public string Code
  7. {
  8. get { return code; }
  9. set { code = value; }
  10. }
  11. private string name = "";
  12. public string Name
  13. {
  14. get { return name; }
  15. set { name = value; }
  16. }
  17. private string pCode = "";
  18. public string PCode
  19. {
  20. get { return pCode; }
  21. set { pCode = value; }
  22. }
  23. }
  24. }