TracerListVO.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. package com.jd.platform.jlog.dashboard.entity;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. import java.util.Map;
  5. /**
  6. * TracerListVO
  7. *
  8. * @author wuweifeng
  9. * @version 1.0
  10. * @date 2021-09-01
  11. */
  12. public class TracerListVO {
  13. /**
  14. * 总记录数
  15. */
  16. private Long total;
  17. /**
  18. * 列表数据
  19. */
  20. private List<Map<String, Object>> rows = new ArrayList<>(16);
  21. /**
  22. * 消息状态码
  23. */
  24. private Integer code;
  25. /**
  26. * 消息内容
  27. */
  28. private Integer msg;
  29. public Long getTotal() {
  30. return total;
  31. }
  32. public void setTotal(Long total) {
  33. this.total = total;
  34. }
  35. public List<Map<String, Object>> getRows() {
  36. return rows;
  37. }
  38. public void setRows(List<Map<String, Object>> rows) {
  39. this.rows = rows;
  40. }
  41. public Integer getCode() {
  42. return code;
  43. }
  44. public void setCode(Integer code) {
  45. this.code = code;
  46. }
  47. public Integer getMsg() {
  48. return msg;
  49. }
  50. public void setMsg(Integer msg) {
  51. this.msg = msg;
  52. }
  53. }