| New file |
| | |
| | | package com.dy.pipIrrTerminal.card.dto; |
| | | |
| | | import jakarta.validation.constraints.NotNull; |
| | | import lombok.*; |
| | | |
| | | /** |
| | | * @author ZhuBaoMin |
| | | * @date 2025-06-11 13:46 |
| | | * @LastEditTime 2025-06-11 13:46 |
| | | * @Description 补扣/返还传传输对象 |
| | | */ |
| | | |
| | | @Data |
| | | @Builder |
| | | @ToString |
| | | @NoArgsConstructor |
| | | @AllArgsConstructor |
| | | public class DtoRepaySupplement { |
| | | public static final long serialVersionUID = 202506111347001L; |
| | | |
| | | /** |
| | | * 水卡编号 |
| | | */ |
| | | @NotNull(message = "水卡编号不能为空") |
| | | private Long cardNum; |
| | | |
| | | /** |
| | | * 补扣金额,补扣接口使用,代码中判断是否为空 |
| | | */ |
| | | private Float repayMorny; |
| | | |
| | | /** |
| | | * 返还金额,返还接口使用,代码中判断是否为空 |
| | | */ |
| | | private Float supplementMoney; |
| | | |
| | | /** |
| | | * 补扣前余额 |
| | | */ |
| | | @NotNull(message = "补扣前余额不能为空") |
| | | private Float balance; |
| | | |
| | | /** |
| | | * 备注信息 |
| | | */ |
| | | private String remarks; |
| | | |
| | | /** |
| | | * 操作人编号 |
| | | */ |
| | | @NotNull(message = "操作人不能为空") |
| | | private Long operator; |
| | | } |