a5c562b471fa1e01e08f1a980cab0604c559cf50.svn-base 1.4 KB

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