package com.zy.asrs.entity.param;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* 月结查询参数
|
*/
|
@Data
|
public class MonthlySettleQueryParam {
|
|
/**
|
* 当前页
|
*/
|
@ApiModelProperty(value = "当前页")
|
private Integer curr = 1;
|
|
/**
|
* 每页数量
|
*/
|
@ApiModelProperty(value = "每页数量")
|
private Integer limit = 10;
|
|
/**
|
* 月结编号
|
*/
|
@ApiModelProperty(value = "月结编号")
|
private String settleNo;
|
|
/**
|
* 状态
|
*/
|
@ApiModelProperty(value = "状态")
|
private Integer status;
|
|
/**
|
* 起始日期
|
*/
|
@ApiModelProperty(value = "起始日期")
|
private String startDate;
|
|
/**
|
* 结束日期
|
*/
|
@ApiModelProperty(value = "结束日期")
|
private String endDate;
|
}
|