|  |  |  | 
|---|
|  |  |  | import io.swagger.v3.oas.annotations.media.Schema; | 
|---|
|  |  |  | import lombok.*; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.time.LocalDateTime; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * @author ZhuBaoMin | 
|---|
|  |  |  | * @date 2023/12/6 14:18 | 
|---|
|  |  |  | 
|---|
|  |  |  | @Schema(description = "农户姓名") | 
|---|
|  |  |  | public String clientName; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "IC卡号") | 
|---|
|  |  |  | public String cardAddr; | 
|---|
|  |  |  | @Schema(description = "水卡编号") | 
|---|
|  |  |  | public String cardNum; | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "注销时间_开始") | 
|---|
|  |  |  | public LocalDateTime cancelTimeStart; | 
|---|
|  |  |  | public String cancelTimeStart; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "注销时间_结束") | 
|---|
|  |  |  | public LocalDateTime cancelTimeStop; | 
|---|
|  |  |  | public String cancelTimeStop; | 
|---|
|  |  |  | } | 
|---|