7dbe046d693e59cc42bdb15f52469a0ac44c3556.svn-base 1.2 KB

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