wuzeyu
2024-02-27 a60332d51fec0ae9f1afecc8c7a018c77e4ac101
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
package com.dy.pipIrrSell.wallet.qo;
 
import com.dy.common.webUtil.QueryConditionVo;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
/**
 * @author ZhuBaoMin
 * @date 2024-01-31 19:21
 * @LastEditTime 2024-01-31 19:21
 * @Description
 */
 
@Data
@Schema(name = "电子钱包账户查询条件")
public class QueryVo extends QueryConditionVo {
    @Schema(description = "农户姓名")
    public String clientName;
 
    @Schema(description = "农户ID")
    public Long clientId;
 
    @Schema(description = "退款状态")
    public Integer refundStatus;
}