| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- package com.ydtech.modules.admin.model.dto;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- /**
- * @version
- * @author: hxl
- * @Date: 2024/6/19 9:47
- * @Description: 收支明细查询对象
- */
- @Data
- @ApiModel("收支明细查询对象")
- public class MyIncomeAndExpensesQueryDto {
- /***
- * 用户id
- */
- @ApiModelProperty(value = "用户id")
- private String userId;
- /***
- * 业务版块类型
- */
- @ApiModelProperty(value = "业务版块类型")
- private String businessSegmentsType;
- /***
- * 交易类型
- */
- @ApiModelProperty(value = "交易类型")
- private String transactionType;
- /***
- * 交易类型
- */
- @ApiModelProperty(value = "收支类型")
- private String incomeAndExpensesType;
- /***
- * 时间筛选类型 0.全部 1.一周内 2. 一月内 3. 三月内 4. 六月内
- */
- @ApiModelProperty(value = "时间筛选类型 0.全部 1.一周内 2. 一月内 3. 三月内 4. 六月内")
- private String dateQueryType;
- /***
- * 开始时间
- */
- @ApiModelProperty(value = "开始时间")
- private String startDate;
- /***
- * 结束时间
- */
- @ApiModelProperty(value = "结束时间")
- private String endDate;
- @ApiModelProperty(value = "每页页数")
- private int pageSize;
- @ApiModelProperty(value = "页数")
- private int pageNum;
- }
|