package cn.lili.modules.lmk.domain.query;
|
|
import cn.lili.base.AbsQuery;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.util.Date;
|
|
/**
|
* 用户行为记录查询
|
*
|
* @author peng
|
* @since 2025-09-08
|
*/
|
@Data
|
@ApiModel(value = "ActionRecord查询参数", description = "用户行为记录查询参数")
|
public class StayActionRecordQuery extends AbsQuery {
|
/**
|
* 用户id
|
*/
|
private String userName;
|
/**
|
* 页面类型
|
*/
|
private String pageCode;
|
/**
|
* 开始时间
|
*/
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date beginDate;
|
/**
|
* 结束时间
|
*/
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date endDate;
|
}
|