18c36211b2094fbc23e520f51013ab0e6950f354.svn-base 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import java.io.Serializable;
  5. /**
  6. * entity:BisInspProSourceProtect
  7. *
  8. * @author zhengdafei
  9. * @date 2019-2-22
  10. */
  11. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  12. public class BisInspProSourceProtectDto extends BaseBean implements Serializable {
  13. private Double lgtd;
  14. private Double lttd;
  15. private Double lgtdpc;
  16. private Double lttdpc;
  17. private String wsCd;
  18. private String wsNm;
  19. private String status;
  20. private String type;
  21. private String id;
  22. public String getId() {
  23. return id;
  24. }
  25. public void setId(String id) {
  26. this.id = id;
  27. }
  28. public Double getLgtd() {
  29. return lgtd;
  30. }
  31. public void setLgtd(Double lgtd) {
  32. this.lgtd = lgtd;
  33. }
  34. public Double getLttd() {
  35. return lttd;
  36. }
  37. public void setLttd(Double lttd) {
  38. this.lttd = lttd;
  39. }
  40. public Double getLgtdpc() {
  41. return lgtdpc;
  42. }
  43. public void setLgtdpc(Double lgtdpc) {
  44. this.lgtdpc = lgtdpc;
  45. }
  46. public Double getLttdpc() {
  47. return lttdpc;
  48. }
  49. public void setLttdpc(Double lttdpc) {
  50. this.lttdpc = lttdpc;
  51. }
  52. public String getWsCd() {
  53. return wsCd;
  54. }
  55. public void setWsCd(String wsCd) {
  56. this.wsCd = wsCd;
  57. }
  58. public String getWsNm() {
  59. return wsNm;
  60. }
  61. public void setWsNm(String wsNm) {
  62. this.wsNm = wsNm;
  63. }
  64. public String getType() {
  65. return type;
  66. }
  67. public void setType(String type) {
  68. this.type = type;
  69. }
  70. public BisInspProSourceProtectDto() {
  71. }
  72. public String getStatus() {
  73. return status;
  74. }
  75. public void setStatus(String status) {
  76. this.status = status;
  77. }
  78. }