package cn.lili.modules.lmk.domain.query; import cn.lili.base.AbsQuery; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import org.springframework.format.annotation.DateTimeFormat; import javax.validation.constraints.NotBlank; import java.util.Date; /** * lmk-shop-java * * @author : zxl * @date : 2025-08-14 10:37 **/ @Data @ApiModel(value = "VideoCommentMangerQuery查询参数", description = "管理端视频评论查询参数") public class VideoCommentMangerQuery extends AbsQuery { @ApiModelProperty("视频id") private String videoId; @ApiModelProperty("评论内容") private String commentContent; @ApiModelProperty("用户名称") private String nickName; @ApiModelProperty("起始时间") @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date startTime; @ApiModelProperty("结束时间") @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date endTime; }