补充提交问题
parent
b4c5e6ee6f
commit
f1cb145706
@ -0,0 +1,36 @@
|
||||
package com.sztzjy.bank.entity.dto;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author 17803
|
||||
* @date 2025-01-14 17:25
|
||||
*/
|
||||
@Data
|
||||
public class BankCardInformationAnswerDTO {
|
||||
|
||||
@ApiModelProperty(notes = "币种")
|
||||
private String currency;
|
||||
|
||||
@ApiModelProperty(notes = "钞汇标志")
|
||||
private String currencyExchangeSymbol;
|
||||
|
||||
|
||||
@ApiModelProperty(notes = "分级类型")
|
||||
private String classifyType;
|
||||
|
||||
@ApiModelProperty(notes = "账户性质")
|
||||
private String natureAccount;
|
||||
|
||||
@ApiModelProperty(notes = "凭证类型")
|
||||
private String voucherType;
|
||||
|
||||
@ApiModelProperty(notes = "支取密码")
|
||||
private String withdrawalPwd;
|
||||
|
||||
@ApiModelProperty(notes = "确认密码")
|
||||
private String confirmPassword;
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue