277d59b305353eeca9c1692a63469fa08bdb6999.svn-base 1.4 KB

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