77be5f49049f8ff04280410271220afe7fa92bbe.svn-base 1.5 KB

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