7f555bed5e5f0ab21d37b233c33e50e0f8f4f7b3.svn-base 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.dcproj.model.BisInspSvwtqh;
  3. public class BisInspSvwtqhDto extends BisInspSvwtqh {
  4. private String nm;
  5. private String code;
  6. // 基础表id
  7. private String baseId;
  8. //组id
  9. private String nodeId;
  10. // ptype
  11. private String pType;
  12. // 对象ut_Type
  13. private String type;
  14. private String groupName;
  15. @Override
  16. public String getNm() {
  17. return nm;
  18. }
  19. @Override
  20. public void setNm(String nm) {
  21. this.nm = nm;
  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. public String getGroupName() {
  54. return groupName;
  55. }
  56. public void setGroupName(String groupName) {
  57. this.groupName = groupName;
  58. }
  59. }