A_AC00010.java 695 B

1234567891011121314151617181920212223242526272829303132333435363738
  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 A_AC00010 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String pid;//项目id
  13. /**
  14. *项目id
  15. */
  16. public void setPid(String pid) {
  17. this.pid=pid;
  18. }
  19. /**
  20. *项目id
  21. */
  22. public String getPid() {
  23. return this.pid;
  24. }
  25. int type;//类型0气动1结构2气弹
  26. /**
  27. *类型0气动1结构2气弹
  28. */
  29. public void setType(int type) {
  30. this.type=type;
  31. }
  32. /**
  33. *类型0气动1结构2气弹
  34. */
  35. public int getType() {
  36. return this.type;
  37. }
  38. }