无关风月
2025-04-16 6cb4ebd3c59e585d546a3e66672fb7f3029a06f3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.dsh.account.dto;
 
import lombok.Data;
 
@Data
public class Receivers {
 
    String type;
    String account;
    String name;
    Integer amout;
    String description;
 
}