New file |
| | |
| | | package com.dy.pipIrrSell.cardOperate.qo; |
| | | |
| | | import com.dy.common.webUtil.QueryConditionVo; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.*; |
| | | |
| | | /** |
| | | * @author ZhuBaoMin |
| | | * @date 2024-01-20 11:35 |
| | | * @LastEditTime 2024-01-20 11:35 |
| | | * @Description |
| | | */ |
| | | |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = false) |
| | | @ToString(callSuper = true) |
| | | @NoArgsConstructor |
| | | @AllArgsConstructor |
| | | @Builder |
| | | @Schema(name = "IC卡充值记录查询条件") |
| | | public class QoRecharge extends QueryConditionVo { |
| | | |
| | | private String clientName; |
| | | |
| | | private String clientNum; |
| | | |
| | | private Long cardNum; |
| | | |
| | | //@Schema(description = "农户编号") |
| | | //private Long clientId; |
| | | |
| | | //@Schema(description = "IC卡号") |
| | | //public String cardAddr; |
| | | |
| | | //@Schema(description = "付款方式") |
| | | //public Integer paymentId; |
| | | |
| | | //@Schema(description = "充值时间_开始") |
| | | //public LocalDateTime rechargeTimeStart; |
| | | // |
| | | //@Schema(description = "充值时间_结束") |
| | | //public LocalDateTime rechargeTimeStop; |
| | | |
| | | //public String rechargeTimeStart; |
| | | |
| | | //public String rechargeTimeStop; |
| | | } |