D_AC00009.java 540 B

12345678910111213141516171819202122232425
  1. /**
  2. * 气动设计
  3. */
  4. package com.miniframe.generate.comm.ac;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 项目属性大对象查询
  9. */
  10. public class D_AC00009 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String pattJson;//属性对象JSOn
  13. /**
  14. *属性对象JSOn
  15. */
  16. public void setPattJson(String pattJson) {
  17. this.pattJson=pattJson;
  18. }
  19. /**
  20. *属性对象JSOn
  21. */
  22. public String getPattJson() {
  23. return this.pattJson;
  24. }
  25. }