| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModelProperty;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- /**
- * entity:BisInspOrgIssue
- *
- * @author lune
- * @date 2019-9-7
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class BisInspOrgIssue extends BaseBean 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 String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public BisInspOrgIssue() {
- }
- @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;
- }
- @Override
- public String toString() {
- return "BisInspOrgIssue [" + "orgId=" + orgId + ", bind=" + bind + ", type=" + type + "]";
- }
- }
|