4465c68c51c8c005cc5869dacae7bc5110bc8ece.svn-base 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.dcproj.model.BisInspFundRgstr;
  3. public class BisInspFundRgstrDto extends BisInspFundRgstr {
  4. // 基础表id
  5. private String code;
  6. // 基础表id
  7. private String baseId;
  8. //组id
  9. private String nodeId;
  10. // 对象名称
  11. private String nm;
  12. // ptype
  13. private String pType;
  14. // 对象ut_Type
  15. private String type;
  16. //督查组名称groupName
  17. private String groupName;
  18. public String getGroupName() {
  19. return groupName;
  20. }
  21. public void setGroupName(String groupName) {
  22. this.groupName = groupName;
  23. }
  24. public String getCode() {
  25. return code;
  26. }
  27. public void setCode(String code) {
  28. this.code = code;
  29. }
  30. public String getNodeId() {
  31. return nodeId;
  32. }
  33. public void setNodeId(String nodeId) {
  34. this.nodeId = nodeId;
  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 String getBaseId() {
  49. return baseId;
  50. }
  51. public void setBaseId(String baseId) {
  52. this.baseId = baseId;
  53. }
  54. public String getType() {
  55. return type;
  56. }
  57. public void setType(String type) {
  58. this.type = type;
  59. }
  60. }