2d545dba82c205cff10b1a40073efd2464d8b869.svn-base 1.5 KB

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