935090232@qq.com
2021-07-09 3cd342a343fd67a32415b832abe1a39bab9e627d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.matrix.system.shopXcx.api.dto;
 
import com.matrix.core.pojo.BasePageQueryDto;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotEmpty;
import javax.validation.constraints.NotNull;
 
@Data
@ApiModel(value = "MoneyCardUseFlowDto", description = "储值卡流水查询参数接收类")
public class MoneyCardUseFlowDto extends BasePageQueryDto {
 
 
    @NotEmpty(message = "请选择查询时间")
    @ApiModelProperty(value = "查询月份",example = "2021-03")
    private String queryTime;
 
 
    @ApiModelProperty(value = "收支类型 不传全部,1,收入,2支出", example = "1")
    private Integer  revenueType;
 
    @NotNull(message = "请选择要查询的储值卡ID")
    @ApiModelProperty(value = "储值卡id", example = "1")
    private Long  carUseId;
 
    @ApiModelProperty(hidden = true)
    private Long  companyId;
 
 
 
 
}