cfed00c33229926dc3ce5de408e63b9f50f7ecd0.svn-base 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import java.io.Serializable;
  5. public class CountParam extends PageParam implements Serializable {
  6. @ApiModelProperty("分组sql拼接")
  7. private String inIdsSql;
  8. public String getInIdsSql() {
  9. return inIdsSql;
  10. }
  11. public void setInIdsSql(String inIdsSql) {
  12. this.inIdsSql = inIdsSql;
  13. }
  14. private String persId;
  15. @ApiModelProperty("172重点工程参数:4,工程建设,7工程运行")
  16. private String pType;
  17. private int type;
  18. public int getType() {
  19. return type;
  20. }
  21. public void setType(int type) {
  22. this.type = type;
  23. }
  24. public String getpType() {
  25. return pType;
  26. }
  27. public void setpType(String pType) {
  28. this.pType = pType;
  29. }
  30. public String getPersId() {
  31. return persId;
  32. }
  33. public void setPersId(String persId) {
  34. this.persId = persId;
  35. }
  36. }