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; } }