bc7b2627587dc990515876a4d87019484b9fb8af.svn-base 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. package cn.com.goldenwater.dcproj.model;
  2. import io.swagger.annotations.ApiModelProperty;
  3. public class BisInspRsvrRgstrDto extends BisInspRsvrRgstr {
  4. private String code;
  5. @ApiModelProperty("督查对象名称")
  6. private String nm;
  7. @ApiModelProperty("督查对象类型:1小水库,2人饮工程,3水毁,4地下水")
  8. private String ptype;
  9. private Double lgtd = 0.0;
  10. private Double lttd = 0.0;
  11. @ApiModelProperty("督查状态标识,0未督查,1督查中,2已督查")
  12. private String wtdstState;
  13. private String viewID;
  14. public String getWtdstState() {
  15. return wtdstState;
  16. }
  17. public void setWtdstState(String wtdstState) {
  18. this.wtdstState = wtdstState;
  19. }
  20. public String getCode() {
  21. return code;
  22. }
  23. public void setCode(String code) {
  24. this.code = code;
  25. }
  26. public String getNm() {
  27. return nm;
  28. }
  29. public void setNm(String nm) {
  30. this.nm = nm;
  31. }
  32. public String getPtype() {
  33. return ptype;
  34. }
  35. public void setPtype(String ptype) {
  36. this.ptype = ptype;
  37. }
  38. public Double getLgtd() {
  39. return lgtd;
  40. }
  41. public void setLgtd(Double lgtd) {
  42. this.lgtd = lgtd;
  43. }
  44. public Double getLttd() {
  45. return lttd;
  46. }
  47. public void setLttd(Double lttd) {
  48. this.lttd = lttd;
  49. }
  50. public String getViewID() {
  51. return viewID;
  52. }
  53. public void setViewID(String viewID) {
  54. this.viewID = viewID;
  55. }
  56. }