| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiParam;
- import java.util.Date;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * BisInspOrgIssueParam
- *
- * @author lune
- * @date 2019-9-7
- */
- public class BisInspOrgIssueParam extends PageParam implements Serializable {
- @ApiModelProperty("主键id")
- private String id;
- @ApiModelProperty("机构id")
- private String orgId;
- @ApiModelProperty("1表示使用绑定标准,0表示使用水利部统一标准")
- private String bind;
- @ApiModelProperty("问题标准类型,如1水库,6水闸等")
- private String type;
- public BisInspOrgIssueParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- @Override
- public String getOrgId() {
- return orgId;
- }
- @Override
- public void setOrgId(String orgId) {
- this.orgId = orgId;
- }
- public String getBind() {
- return bind;
- }
- public void setBind(String bind) {
- this.bind = bind;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- }
|