71cc2cfebda8ea87b281d30def47a53fb6a5a5f4.svn-base 1.3 KB

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