Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

商家转账到零钱-增加转账场景ID #3009

Merged
merged 1 commit into from
May 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,20 @@ public class TransferCreateRequest implements Serializable {
@SpecEncrypt
private List<TransferDetailList> transferDetailList;

/**
* <pre>
* 字段名:转账场景ID
* 变量名:transfer_scene_id
* 是否必填:否
* 类型:string(36)
* 描述:
* 该批次转账使用的转账场景,如不填写则使用商家的默认场景,如无默认场景可为空,可前往“商家转账到零钱-前往功能”中申请。
* 示例值:1001
* </pre>
*/
@SerializedName("transfer_scene_id")
private String transferSceneId;


/**
* The type Transfer detail list.
Expand Down