puzhibing
2023-12-01 ddcef762ff4a159e132c68dfec512c60a68a53e6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.stylefeng.guns.modular.system.warpper;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author zhibing.pu
 * @Date 2023/8/17 12:39
 */
@Data
@ApiModel
public class QueryHistoricalSettlement {
    @ApiModelProperty("结算日期")
    private String createTime;
    @ApiModelProperty("结算金额")
    private Double price;
    @ApiModelProperty("结算周期(1=日结算,2=周结算,3=月结算)")
    private Integer type;
}