xiaoyong931011
2022-10-21 45189f71f0eb2c119ea15de98c76839e9ee4b570
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package cc.mrbird.febs.dapp.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "ApiTransferPasswordDto", description = "设置资金密码")
public class ApiTransferPasswordDto {
 
    @ApiModelProperty(value = "旧资金密码",example = "49546512")
    private String oldTransferPassword;
 
    @ApiModelProperty(value = "新资金密码",example = "49546512")
    private String newTransferPassword;
 
    @ApiModelProperty(value = "再次输入新资金密码",example = "49546512")
    private String newTransferPasswordAgain;
}