This commit is contained in:
2023-06-28 10:33:50 +08:00
parent 02a26f769c
commit cf321e6808
4 changed files with 65 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
package com.jsowell.adapay.dto;
import lombok.*;
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class WithdrawDTO {
// 运营商id
private String merchantId;
// 提现金额
private String cashAmt;
}