dd5fc8fd739b221f5ccb5f4ffc375f3018b084fc.svn-base 1.4 KB

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