NodeAttributes.java 472 B

123456789101112131415161718192021222324252627282930
  1. package com.jsh.erp.datasource.vo;
  2. /**
  3. * Description
  4. *
  5. * @Author: qiankunpingtai
  6. * @Date: 2019/3/13 18:11
  7. */
  8. public class NodeAttributes {
  9. //编号
  10. private String no;
  11. //类型
  12. private Integer type;
  13. public String getNo() {
  14. return no;
  15. }
  16. public void setNo(String no) {
  17. this.no = no;
  18. }
  19. public Integer getType() {
  20. return type;
  21. }
  22. public void setType(Integer type) {
  23. this.type = type;
  24. }
  25. }