793820a23b70ee216554b44fbd028d2b20ac21a4.svn-base 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.dcproj.model.BisInspWtdst;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import java.io.Serializable;
  5. /**
  6. * Created by lhc on 2019-2-24.
  7. */
  8. public class BisInspWtdstBaseDto extends BisInspWtdst implements Serializable {
  9. private String code;
  10. private String id;
  11. private String nm;
  12. private String ptype;
  13. private Double lgtd;
  14. private Double lttd;
  15. @ApiModelProperty("暗访状态")
  16. private String secStat;
  17. private String state;
  18. public String getSecStat() {
  19. return secStat;
  20. }
  21. public void setSecStat(String secStat) {
  22. this.secStat = secStat;
  23. }
  24. public String getCode() {
  25. return code;
  26. }
  27. public void setCode(String code) {
  28. this.code = code;
  29. }
  30. public String getId() {
  31. return id;
  32. }
  33. public void setId(String id) {
  34. this.id = id;
  35. }
  36. public String getNm() {
  37. return nm;
  38. }
  39. public void setNm(String nm) {
  40. this.nm = nm;
  41. }
  42. public String getPtype() {
  43. return ptype;
  44. }
  45. public void setPtype(String ptype) {
  46. this.ptype = ptype;
  47. }
  48. public Double getLgtd() {
  49. return lgtd;
  50. }
  51. public void setLgtd(Double lgtd) {
  52. this.lgtd = lgtd;
  53. }
  54. public Double getLttd() {
  55. return lttd;
  56. }
  57. public void setLttd(Double lttd) {
  58. this.lttd = lttd;
  59. }
  60. public String getState() {
  61. return state;
  62. }
  63. public void setState(String state) {
  64. this.state = state;
  65. }
  66. }