b2c4a8acac85db3233375205ab755993909921a4.svn-base 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import cn.com.goldenwater.dcproj.model.BisInspAllRlationPers;
  4. import cn.com.goldenwater.dcproj.model.PersPosition;
  5. import com.fasterxml.jackson.annotation.JsonFormat;
  6. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  7. import org.springframework.format.annotation.DateTimeFormat;
  8. import java.io.Serializable;
  9. import java.util.Date;
  10. /**
  11. * entity:BisInspAllRlationPers
  12. *
  13. * @author litf
  14. * @date 2019-2-25
  15. */
  16. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  17. public class BisInspAllRlationPersDto extends BisInspAllRlationPers implements Serializable {
  18. private String pertype;
  19. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
  20. private Date operateTime;
  21. private PersPosition persPosition;
  22. private String index;
  23. private Double lgtd;
  24. private Double lttd;
  25. private Double centerXGd;
  26. private Double centerYGd;
  27. private String state;
  28. public Double getCenterXGd() {
  29. return centerXGd;
  30. }
  31. public void setCenterXGd(Double centerXGd) {
  32. this.centerXGd = centerXGd;
  33. }
  34. public Double getCenterYGd() {
  35. return centerYGd;
  36. }
  37. public void setCenterYGd(Double centerYGd) {
  38. this.centerYGd = centerYGd;
  39. }
  40. public String getState() {
  41. return state;
  42. }
  43. public void setState(String state) {
  44. this.state = state;
  45. }
  46. public Double getLgtd() {
  47. return lgtd;
  48. }
  49. public void setLgtd(Double lgtd) {
  50. this.lgtd = lgtd;
  51. }
  52. public Double getLttd() {
  53. return lttd;
  54. }
  55. public void setLttd(Double lttd) {
  56. this.lttd = lttd;
  57. }
  58. public BisInspAllRlationPersDto() {
  59. }
  60. public String getPertype() {
  61. return pertype;
  62. }
  63. public void setPertype(String pertype) {
  64. this.pertype = pertype;
  65. }
  66. public PersPosition getPersPosition() {
  67. return persPosition;
  68. }
  69. public void setPersPosition(PersPosition persPosition) {
  70. this.persPosition = persPosition;
  71. }
  72. public Date getOperateTime() {
  73. return operateTime;
  74. }
  75. public void setOperateTime(Date operateTime) {
  76. this.operateTime = operateTime;
  77. }
  78. public String getIndex() {
  79. return index;
  80. }
  81. public void setIndex(String index) {
  82. this.index = index;
  83. }
  84. }