| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- package com.ydtech.modules.admin.model.vo;
- import lombok.Data;
- import java.io.Serializable;
- /**
- * @version
- * @author: hxl
- * @Date: 2024/9/6 11:51
- * @Description:
- */
- @Data
- public class DxDataVo implements Serializable {
- /***
- * 开始时间
- */
- private String beginDate;
- /***
- * 结束时间
- */
- private String endDate;
- /***
- * 用户id
- */
- private String userId;
- /***
- * 查询时间
- */
- private String dateTime;
- public DxDataVo(String beginDate, String endDate, String userId) {
- this.beginDate = beginDate;
- this.endDate = endDate;
- this.userId = userId;
- }
- public DxDataVo() {
- }
- public DxDataVo(String userId, String dateTime) {
- this.userId = userId;
- this.dateTime = dateTime;
- }
- }
|