| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import io.swagger.annotations.ApiModelProperty;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- /**
- * entity:BisInspFscRgstr
- *
- * @author lune
- * @date 2019-7-19
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspFscRgstr extends BaseBean implements Serializable {
- @ApiModelProperty("主键id")
- private String id;
- @ApiModelProperty("督查对象ID")
- private String objId;
- @ApiModelProperty("项目名称")
- private String name;
- @ApiModelProperty("检查分类(1:水库;2:水闸;3:人饮;4:水利工程建设;5:水利工程运行)")
- private String type;
- @ApiModelProperty("所属流域机构")
- private String admOrg;
- @ApiModelProperty("行政区编码")
- private String adCode;
- @ApiModelProperty("工程详细位置")
- private String location;
- @ApiModelProperty("PC经度")
- private Double centerX;
- @ApiModelProperty("PC纬度")
- private Double centerY;
- @ApiModelProperty("高德经度")
- private Double gdX;
- @ApiModelProperty("高德纬度")
- private Double gdY;
- @ApiModelProperty("备注")
- private String note;
- @ApiModelProperty("督查状态(0:未飞检;1:飞检中;2:已飞检)")
- private String state;
- @ApiModelProperty("数据状态(0:正常;9:删除)")
- private String dataStat;
- @ApiModelProperty("创建人")
- private String persId;
- @ApiModelProperty("督查组ID")
- private String groupId;
- @ApiModelProperty("创建时间")
- private Date inTm;
- @ApiModelProperty("修改时间")
- private Date upTm;
- public BisInspFscRgstr() {
- }
- public BisInspFscRgstr(AttFscBase attFscBase) {
- this.name = attFscBase.getName();
- this.admOrg = attFscBase.getAdmOrg();
- this.type = attFscBase.getType();
- this.adCode = attFscBase.getAdCode();
- this.location = attFscBase.getLocation();
- this.centerX = attFscBase.getCenterX();
- this.centerY = attFscBase.getCenterY();
- this.gdX = attFscBase.getGdX();
- this.gdY = attFscBase.getGdY();
- this.persId = attFscBase.getPersId();
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- @Override
- public String getObjId() {
- return objId;
- }
- @Override
- public void setObjId(String objId) {
- this.objId = objId;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getAdmOrg() {
- return admOrg;
- }
- public void setAdmOrg(String admOrg) {
- this.admOrg = admOrg;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public String getLocation() {
- return location;
- }
- public void setLocation(String location) {
- this.location = location;
- }
- public Double getCenterX() {
- return centerX;
- }
- public void setCenterX(Double centerX) {
- this.centerX = centerX;
- }
- public Double getCenterY() {
- return centerY;
- }
- public void setCenterY(Double centerY) {
- this.centerY = centerY;
- }
- public Double getGdX() {
- return gdX;
- }
- public void setGdX(Double gdX) {
- this.gdX = gdX;
- }
- public Double getGdY() {
- return gdY;
- }
- public void setGdY(Double gdY) {
- this.gdY = gdY;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- public String getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- @Override
- public String getGroupId() {
- return groupId;
- }
- @Override
- public void setGroupId(String groupId) {
- this.groupId = groupId;
- }
- 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;
- }
- @Override
- public String toString() {
- return "BisInspFscRgstr [" + "id=" + id + ", objId=" + objId + ", name=" + name + ", type=" + type + ", admOrg=" + admOrg + ", adCode=" + adCode + ", location=" + location + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", note=" + note + ", state=" + state + ", dataStat=" + dataStat + ", persId=" + persId + ", groupId=" + groupId + ", inTm=" + inTm + ", upTm=" + upTm + "]";
- }
- }
|