1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.nova.sankuai.domain.api.rongbei;
|
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| @Data
| @ApiModel("data字段组成")
| public class ApplyData {
| @ApiModelProperty(value = "产品方生成的进件流水号,但status=0时必传", notes = "string(32)")
| private String partner_flow_id;
|
| @ApiModelProperty(value = "接受状态 0:成功,1:失败", required = true)
| private Integer status;
|
| @ApiModelProperty(value = "status!=0时,返回失败原因", required = true, notes = "string(512)")
| private String msg;
| }
|
|