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; } }