IntegrateChildNode.java 459 B

12345678910111213141516171819
  1. package jnpf.integrate.model.childnode;
  2. import lombok.Data;
  3. /**
  4. * 版本: V3.0.0
  5. * 版权: 引迈信息技术有限公司
  6. * 作者: 管理员/admin
  7. * 日期: 2020-10-21 14:23:30
  8. */
  9. @Data
  10. public class IntegrateChildNode {
  11. private String type;
  12. private String content;
  13. private String nodeId;
  14. private String prevId;
  15. private IntegrateChildNode childNode;
  16. private IntegrateProperties properties = new IntegrateProperties();
  17. }