1e5dbf7b056df524573c4e9d28217a604bed3014.svn-base 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.dcproj.model.BisInspWiuqhRgstr;
  3. public class BisInspWiuqhRgstrDto extends BisInspWiuqhRgstr {
  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. }