| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- public class CountParam extends PageParam implements Serializable {
- @ApiModelProperty("分组sql拼接")
- private String inIdsSql;
- public String getInIdsSql() {
- return inIdsSql;
- }
- public void setInIdsSql(String inIdsSql) {
- this.inIdsSql = inIdsSql;
- }
- private String persId;
- @ApiModelProperty("172重点工程参数:4,工程建设,7工程运行")
- private String pType;
- private int type;
- public int getType() {
- return type;
- }
- public void setType(int type) {
- this.type = type;
- }
- public String getpType() {
- return pType;
- }
- public void setpType(String pType) {
- this.pType = pType;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- }
|