| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package cn.com.goldenwater.dcproj.model;
- import cn.com.goldenwater.core.model.BaseBean;
- import io.swagger.annotations.ApiModelProperty;
- public class WtuntRgstrChild extends BaseBean {
- @ApiModelProperty(value = "2018年度的实际用水量地下水(青海)", position = 27)
- private String fctwu18Well;
- @ApiModelProperty(value = "2019年度的实际用水量地下水(青海)", position = 28)
- private String fctwu19Well;
- @ApiModelProperty(value = "2018年度的实际用水量地表水(青海)", position = 29)
- private String fctwu18Swhs;
- @ApiModelProperty(value = "2019年度的实际用水量地表水(青海)", position = 30)
- private String fctwu19Swhs;
- public String getFctwu18Well() {
- return fctwu18Well;
- }
- public void setFctwu18Well(String fctwu18Well) {
- this.fctwu18Well = fctwu18Well;
- }
- public String getFctwu19Well() {
- return fctwu19Well;
- }
- public void setFctwu19Well(String fctwu19Well) {
- this.fctwu19Well = fctwu19Well;
- }
- public String getFctwu18Swhs() {
- return fctwu18Swhs;
- }
- public void setFctwu18Swhs(String fctwu18Swhs) {
- this.fctwu18Swhs = fctwu18Swhs;
- }
- public String getFctwu19Swhs() {
- return fctwu19Swhs;
- }
- public void setFctwu19Swhs(String fctwu19Swhs) {
- this.fctwu19Swhs = fctwu19Swhs;
- }
- }
|