| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- package cn.com.goldenwater.dcproj.model;
- import io.swagger.annotations.ApiModelProperty;
- public class WagaType {
- @ApiModelProperty("总计")
- private int total;
- @ApiModelProperty("水闸编码")
- private String objCode;
- @ApiModelProperty("水闸规模")
- private String engScal;
- @ApiModelProperty("问题严重程度")
- private String cate;
- private String nm;
- public String getNm() {
- return nm;
- }
- public void setNm(String nm) {
- this.nm = nm;
- }
- public String getCate() {
- return cate;
- }
- public void setCate(String cate) {
- this.cate = cate;
- }
- public int getTotal() {
- return total;
- }
- public void setTotal(int total) {
- this.total = total;
- }
- public String getObjCode() {
- return objCode;
- }
- public void setObjCode(String objCode) {
- this.objCode = objCode;
- }
- public String getEngScal() {
- return engScal;
- }
- public void setEngScal(String engScal) {
- this.engScal = engScal;
- }
- }
|