| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * entity:BisInspKeysafqhRegisterUni
- *
- * @author lhc
- * @date 2021-6-28
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class BisInspKeysafqhRegisterUni extends BaseBean implements Serializable {
- /** 主键ID */
- @ApiModelProperty(value="主键ID",name="id")
- private String id;
- /** 标段ID */
- @ApiModelProperty(value="标段ID",name="secId")
- private String secId;
- /** 单位名称 */
- @ApiModelProperty(value="单位名称",name="nm")
- private String nm;
- /** 单位性质 */
- @ApiModelProperty(value="单位性质",name="nature")
- private String nature;
- /** 建管模式 */
- @ApiModelProperty(value="建管模式",name="government")
- private String government;
- /** 高德经度 */
- @ApiModelProperty(value="高德经度",name="lgtd")
- private Double lgtd;
- /** 高德纬度 */
- @ApiModelProperty(value="高德纬度",name="lttd")
- private Double lttd;
- /** PC经度 */
- @ApiModelProperty(value="PC经度",name="lgtdPc")
- private Double lgtdPc;
- /** PC纬度 */
- @ApiModelProperty(value="PC纬度",name="lttdPc")
- private Double lttdPc;
- /** 记录人员ID */
- @ApiModelProperty(value="记录人员ID",name="persId")
- private String persId;
- /** 创建时间 */
- @ApiModelProperty(value="创建时间",name="intm")
- private Date intm;
- /** 最后修改时间 */
- @ApiModelProperty(value="最后修改时间",name="uptm")
- private Date uptm;
- /** 数据状态(0:正常;9:删除) */
- @ApiModelProperty(value="数据状态(0:正常;9:删除)",name="dataStat")
- private String dataStat;
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getSecId() {
- return secId;
- }
- public void setSecId(String secId) {
- this.secId = secId;
- }
- public String getNm() {
- return nm;
- }
- public void setNm(String nm) {
- this.nm = nm;
- }
- public String getNature() {
- return nature;
- }
- public void setNature(String nature) {
- this.nature = nature;
- }
- public String getGovernment() {
- return government;
- }
- public void setGovernment(String government) {
- this.government = government;
- }
- public Double getLgtd() {
- return lgtd;
- }
- public void setLgtd(Double lgtd) {
- this.lgtd = lgtd;
- }
- public Double getLttd() {
- return lttd;
- }
- public void setLttd(Double lttd) {
- this.lttd = lttd;
- }
- public Double getLgtdPc() {
- return lgtdPc;
- }
- public void setLgtdPc(Double lgtdPc) {
- this.lgtdPc = lgtdPc;
- }
- public Double getLttdPc() {
- return lttdPc;
- }
- public void setLttdPc(Double lttdPc) {
- this.lttdPc = lttdPc;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public Date getUptm() {
- return uptm;
- }
- public void setUptm(Date uptm) {
- this.uptm = uptm;
- }
- public String getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- @Override
- public String toString() {
- return "BisInspKeysafqhRegisterUni [" + "id=" + id + ", secId=" + secId + ", nm=" + nm + ", nature=" + nature + ", government=" + government + ", lgtd=" + lgtd + ", lttd=" + lttd + ", lgtdPc=" + lgtdPc + ", lttdPc=" + lttdPc + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
- }
- }
|