34776df3bdf286726f3baed38510269d395e18ac.svn-base 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.dcproj.model.BisInspWtgovRgstr;
  3. public class BisInspWtgovRgstrDto extends BisInspWtgovRgstr {
  4. /**
  5. * 基础表id
  6. */
  7. private String code;
  8. private String nm;
  9. // 基础表id
  10. private String baseId;
  11. //组id
  12. private String nodeId;
  13. // ptype
  14. private String pType;
  15. // 对象ut_Type
  16. private String type;
  17. private String groupName;
  18. public String getNm() {
  19. return nm;
  20. }
  21. public void setNm(String nm) {
  22. this.nm = nm;
  23. }
  24. public String getGroupName() {
  25. return groupName;
  26. }
  27. public void setGroupName(String groupName) {
  28. this.groupName = groupName;
  29. }
  30. public String getCode() {
  31. return code;
  32. }
  33. public void setCode(String code) {
  34. this.code = code;
  35. }
  36. public String getBaseId() {
  37. return baseId;
  38. }
  39. public void setBaseId(String baseId) {
  40. this.baseId = baseId;
  41. }
  42. public String getNodeId() {
  43. return nodeId;
  44. }
  45. public void setNodeId(String nodeId) {
  46. this.nodeId = nodeId;
  47. }
  48. public String getpType() {
  49. return pType;
  50. }
  51. public void setpType(String pType) {
  52. this.pType = pType;
  53. }
  54. public String getType() {
  55. return type;
  56. }
  57. public void setType(String type) {
  58. this.type = type;
  59. }
  60. }