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; 
 | 
} 
 |