DxDataVo.java 831 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package com.ydtech.modules.admin.model.vo;
  2. import lombok.Data;
  3. import java.io.Serializable;
  4. /**
  5. * @version
  6. * @author: hxl
  7. * @Date: 2024/9/6 11:51
  8. * @Description:
  9. */
  10. @Data
  11. public class DxDataVo implements Serializable {
  12. /***
  13. * 开始时间
  14. */
  15. private String beginDate;
  16. /***
  17. * 结束时间
  18. */
  19. private String endDate;
  20. /***
  21. * 用户id
  22. */
  23. private String userId;
  24. /***
  25. * 查询时间
  26. */
  27. private String dateTime;
  28. public DxDataVo(String beginDate, String endDate, String userId) {
  29. this.beginDate = beginDate;
  30. this.endDate = endDate;
  31. this.userId = userId;
  32. }
  33. public DxDataVo() {
  34. }
  35. public DxDataVo(String userId, String dateTime) {
  36. this.userId = userId;
  37. this.dateTime = dateTime;
  38. }
  39. }