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

🐛 二级进件参数缺少owner字段 #2547

Merged
merged 1 commit into from
Feb 28, 2022
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 @@ -131,6 +131,19 @@ public class ApplymentsRequest implements Serializable {
@SpecEncrypt
private IdDocInfo idDocInfo;

/**
* <pre>
* 字段名:经营者/法人是否为受益人
* 变量名:owner
* 是否必填:条件选填
* 类型:bool
* 描述:主体类型为企业时,需要填写:1、若经营者/法人是最终受益人,则填写:true。2、若经营者/法人不是最终受益人,则填写:false。
* 示例值:true
* </pre>
*/
@SerializedName(value = "owner")
private Boolean owner;

/**
* <pre>
* 字段名:是否填写结算账户信息
Expand Down