| package com.mzl.flower.entity.payment; | 
|   | 
| import com.baomidou.mybatisplus.annotation.TableField; | 
| import com.baomidou.mybatisplus.annotation.TableName; | 
| import com.mzl.flower.base.BaseEntity; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
| import java.time.LocalDateTime; | 
|   | 
| @Data | 
| @TableName("t_transfer") | 
| public class Transfer extends BaseEntity { | 
|   | 
|     @TableField("name") | 
|     private String name;//批次名称 | 
|   | 
|     @TableField("remarks") | 
|     private String remarks;//批次备注 | 
|   | 
|     @TableField("total_amount") | 
|     private Long totalAmount;//转账总金额(分) | 
|   | 
|     @TableField("total_num") | 
|     private Integer totalNum;//转账总笔数 | 
|   | 
|     @TableField("status") | 
|     private String status;//状态(TRANSFER_STATUS) | 
|   | 
|     @TableField("batch_id") | 
|     private String batchId;//批次id | 
|   | 
|     @TableField("check_time") | 
|     private LocalDateTime checkTime;//确认时间 | 
|   | 
|     @TableField("check_log") | 
|     private String checkLog;//确认记录 | 
|   | 
| } |