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.NotNull;
|
|
@Data
|
@ApiModel(value = "RevenueFlowDto", description = "收益流水查询参数接收类")
|
public class RevenueFlowDto extends BasePageQueryDto {
|
|
@NotNull(message = "查询月份不能为空")
|
@ApiModelProperty(value = "查询月份",example = "2021-03")
|
private String queryTime;
|
|
|
@ApiModelProperty(value = "收益类型 不传全部,1,收入,2支出", example = "1")
|
private Integer revenueType;
|
|
@ApiModelProperty(hidden = true)
|
private Long userId;
|
|
|
}
|