| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- package cn.com.goldenwater.dcproj.model;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- /**
- * entity:AttGrwBase
- *
- * @author zhengdafei
- * @date 2019-3-30
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class AttGrwBaseAdd extends BaseBean implements Serializable {
- private static final long serialVersionUID = 1L;
- //监测站编码(主键)
- @ApiModelProperty(value = "监测站编码(长度:20,主键,可为空:N)")
- private String stcd;
- @ApiModelProperty(value = "(精度:10,小数位:6,可为空:Y)")
- private Double lgtdPc;
- //监测站位置
- @ApiModelProperty(value = "监测站位置(长度:50,可为空:Y)")
- private String stlc;
- //北纬(度)
- @ApiModelProperty(value = "北纬(度)(精度:10,小数位:6,可为空:Y)")
- private Double lttd;
- //监测站名称
- @ApiModelProperty(value = "监测站名称(长度:100,可为空:Y)")
- private String stnm;
- //行政区划代码
- @ApiModelProperty(value = "行政区划代码(长度:50,可为空:Y)")
- private String adcd;
- //监测站类别
- @ApiModelProperty(value = "监测站类别(长度:50,可为空:Y)")
- private String sttp;
- //行政区划名称
- @ApiModelProperty(value = "行政区划名称(长度:50,可为空:Y)")
- private String adnm;
- @ApiModelProperty(value = "(精度:10,小数位:6,可为空:Y)")
- private Double lttdPc;
- //东经(度)
- @ApiModelProperty(value = "东经(度)(精度:10,小数位:6,可为空:Y)")
- private Double lgtd;
- //监测井类型
- @ApiModelProperty(value = "监测井类型(长度:50,可为空:Y)")
- private String wsttp;
- public AttGrwBaseAdd() {
- }
- public static long getSerialVersionUID() {
- return serialVersionUID;
- }
- public String getStcd() {
- return stcd;
- }
- public void setStcd(String stcd) {
- this.stcd = stcd;
- }
- public Double getLgtdPc() {
- return lgtdPc;
- }
- public void setLgtdPc(Double lgtdPc) {
- this.lgtdPc = lgtdPc;
- }
- public String getStlc() {
- return stlc;
- }
- public void setStlc(String stlc) {
- this.stlc = stlc;
- }
- public Double getLttd() {
- return lttd;
- }
- public void setLttd(Double lttd) {
- this.lttd = lttd;
- }
- public String getStnm() {
- return stnm;
- }
- public void setStnm(String stnm) {
- this.stnm = stnm;
- }
- public String getAdcd() {
- return adcd;
- }
- public void setAdcd(String adcd) {
- this.adcd = adcd;
- }
- public String getSttp() {
- return sttp;
- }
- public void setSttp(String sttp) {
- this.sttp = sttp;
- }
- public String getAdnm() {
- return adnm;
- }
- public void setAdnm(String adnm) {
- this.adnm = adnm;
- }
- public Double getLttdPc() {
- return lttdPc;
- }
- public void setLttdPc(Double lttdPc) {
- this.lttdPc = lttdPc;
- }
- public Double getLgtd() {
- return lgtd;
- }
- public void setLgtd(Double lgtd) {
- this.lgtd = lgtd;
- }
- public String getWsttp() {
- return wsttp;
- }
- public void setWsttp(String wsttp) {
- this.wsttp = wsttp;
- }
- }
|