b2fea8cf9a9f3c118edd06bb0a4c3e43c5a35574.svn-base 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.dcproj.model.BisInspQymten;
  3. public class BisInspQymtenDto extends BisInspQymten {
  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. 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 getNodeId() {
  30. return nodeId;
  31. }
  32. public void setNodeId(String nodeId) {
  33. this.nodeId = nodeId;
  34. }
  35. public String getNm() {
  36. return nm;
  37. }
  38. public void setNm(String nm) {
  39. this.nm = nm;
  40. }
  41. public String getpType() {
  42. return pType;
  43. }
  44. public void setpType(String pType) {
  45. this.pType = pType;
  46. }
  47. public String getBaseId() {
  48. return baseId;
  49. }
  50. public void setBaseId(String baseId) {
  51. this.baseId = baseId;
  52. }
  53. public String getType() {
  54. return type;
  55. }
  56. public void setType(String type) {
  57. this.type = type;
  58. }
  59. }