e989591afd010d5ecbe9e931057299ddf10ed685.svn-base 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package cn.com.goldenwater.dcproj.param;
  2. public class ObjInspPblmsParams {
  3. /**
  4. * 附件一,附件二
  5. */
  6. private String attach;
  7. /**
  8. * 类型 1 小水库 2 农村饮用水 3 水毁 4 172 重点工程
  9. */
  10. private String type;
  11. /**
  12. * 父id
  13. */
  14. private String pguid;
  15. /**
  16. * 表示节点层级
  17. */
  18. private String sort1;
  19. /**
  20. * 序号
  21. */
  22. private String sn;
  23. public String getSn() {
  24. return sn;
  25. }
  26. public void setSn(String sn) {
  27. this.sn = sn;
  28. }
  29. public String getAttach() {
  30. return attach;
  31. }
  32. public void setAttach(String attach) {
  33. this.attach = attach;
  34. }
  35. public String getType() {
  36. return type;
  37. }
  38. public void setType(String type) {
  39. this.type = type;
  40. }
  41. public String getPguid() {
  42. return pguid;
  43. }
  44. public void setPguid(String pguid) {
  45. this.pguid = pguid;
  46. }
  47. public String getSort1() {
  48. return sort1;
  49. }
  50. public void setSort1(String sort1) {
  51. this.sort1 = sort1;
  52. }
  53. }