|  |  | 
 |  |  | import io.swagger.v3.oas.annotations.media.Schema; | 
 |  |  | import lombok.*; | 
 |  |  |  | 
 |  |  | import java.time.LocalDateTime; | 
 |  |  |  | 
 |  |  | /** | 
 |  |  |  * @author ZhuBaoMin | 
 |  |  |  * @date 2023/12/4 17:20 | 
 |  |  | 
 |  |  |     @Schema(description = "农户姓名") | 
 |  |  |     public String clientName; | 
 |  |  |  | 
 |  |  |     @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; | 
 |  |  |  | 
 |  |  |     @Schema(description = "充值时间_开始") | 
 |  |  |     //public DateTime rechargeTimeStart; | 
 |  |  |     public LocalDateTime rechargeTimeStart; | 
 |  |  |     public String rechargeTimeStart; | 
 |  |  |  | 
 |  |  |     @Schema(description = "充值时间_结束") | 
 |  |  |     //public DateTime rechargeTimeStop; | 
 |  |  |     public LocalDateTime rechargeTimeStop; | 
 |  |  |     public String rechargeTimeStop; | 
 |  |  | } |