0d040b22cd2559c2a313b20ddfcc9d1b6016311b.svn-base 1.4 KB

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