e1f0a4faba85bcf64ca5139a70a26776d2f9543c.svn-base 1.4 KB

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