/* * Copyright (c) 2018-2025, lengleng All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * Neither the name of the yifu4cloud.com developer nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * Author: lengleng (wangiegie@gmail.com) */ package ${package}.${moduleName}.vo; import io.swagger.v3.oas.annotations.media.Schema; import ${package}.${moduleName}.entity.${className} import lombok.Data; /** * ${comments} * * @author ${author} * @date ${datetime} */ @Data public class ${className}SearchVo extends ${className}{ /** * 多选导出或删除等操作 */ @Schema(description = "选中ID,多个逗号分割") private String ids; /** * 创建时间区间 [开始时间,结束时间] */ @Schema(description = "创建时间区间") private LocalDateTime[] createTimes; /** * @Author fxj * 查询数据起 **/ @Schema(description = "查询limit 开始") private int limitStart; /** * @Author fxj * 查询数据止 **/ @Schema(description = "查询limit 数据条数") private int limitEnd; }