| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- package cn.com.goldenwater.dcproj.dto;
- import cn.com.goldenwater.core.model.BaseBean;
- import cn.com.goldenwater.dcproj.model.BisInspAllRlationPers;
- import cn.com.goldenwater.dcproj.model.PersPosition;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import org.springframework.format.annotation.DateTimeFormat;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * entity:BisInspAllRlationPers
- *
- * @author litf
- * @date 2019-2-25
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspAllRlationPersDto extends BisInspAllRlationPers implements Serializable {
- private String pertype;
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
- private Date operateTime;
- private PersPosition persPosition;
- private String index;
- private Double lgtd;
- private Double lttd;
- private Double centerXGd;
- private Double centerYGd;
- private String state;
- public Double getCenterXGd() {
- return centerXGd;
- }
- public void setCenterXGd(Double centerXGd) {
- this.centerXGd = centerXGd;
- }
- public Double getCenterYGd() {
- return centerYGd;
- }
- public void setCenterYGd(Double centerYGd) {
- this.centerYGd = centerYGd;
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- 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 BisInspAllRlationPersDto() {
- }
- public String getPertype() {
- return pertype;
- }
- public void setPertype(String pertype) {
- this.pertype = pertype;
- }
- public PersPosition getPersPosition() {
- return persPosition;
- }
- public void setPersPosition(PersPosition persPosition) {
- this.persPosition = persPosition;
- }
- public Date getOperateTime() {
- return operateTime;
- }
- public void setOperateTime(Date operateTime) {
- this.operateTime = operateTime;
- }
- public String getIndex() {
- return index;
- }
- public void setIndex(String index) {
- this.index = index;
- }
- }
|