1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.sinata.rest.modular.mall.controller.body;
|
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| /**
| * 分页查询详情
| */
| @Data
| public class BodyPageBankDetail extends BaseBodyPage {
|
| @ApiModelProperty(value = "月份(格式:yyyy-MM)")
| private String month;
| }
|
|