| | |
| | | package com.zy.asrs.common.domain.param; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | | * 查询参数基本字段 |
| | | * |
| | | * @author vincent |
| | | * @since 2021-08-26 22:14:43 |
| | | */ |
| | | @Data |
| | | public class BaseParam implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty("分页查询页码") |
| | | private Long curr; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty("分页查询每页数量") |
| | | private Long limit; |
| | | |
| | | private String condition; |
| | | |
| | | } |
| | | package com.zy.asrs.common.domain.param;
|
| | |
|
| | | import com.baomidou.mybatisplus.annotation.TableField;
|
| | | import io.swagger.annotations.ApiModelProperty;
|
| | | import lombok.Data;
|
| | |
|
| | | import java.io.Serializable;
|
| | |
|
| | | /**
|
| | | * 查询参数基本字段
|
| | | *
|
| | | * @author vincent
|
| | | * @since 2021-08-26 22:14:43
|
| | | */
|
| | | @Data
|
| | | public class BaseParam implements Serializable {
|
| | | private static final long serialVersionUID = 1L;
|
| | |
|
| | | @TableField(exist = false)
|
| | | @ApiModelProperty("分页查询页码")
|
| | | private Long curr;
|
| | |
|
| | | @TableField(exist = false)
|
| | | @ApiModelProperty("分页查询每页数量")
|
| | | private Long limit;
|
| | |
|
| | | private String condition;
|
| | |
|
| | | }
|