EntitySearchVo.java.vm 1.56 KB
Newer Older
fangxinjiang's avatar
fangxinjiang committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 *    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;
fangxinjiang's avatar
fangxinjiang committed
20
import ${package}.${moduleName}.entity.${className}
fangxinjiang's avatar
fangxinjiang committed
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
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;

}