1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
| package com.stylefeng.guns.modular.system.util.qianyuntong.model;
|
| import lombok.Data;
|
| /**
| * @author zhibing.pu
| * @Date 2025/7/24 10:13
| */
| @Data
| public class GoodsInfoRequest {
| /**
| * 企业ID(补偿场景新创建的订单支付传备用金企业ID)
| */
| private String id;
| /**
| * 子商户微信appId(证联预下单支付必填)
| */
| private String subAppId;
| /**
| * 付款人的openId(证联预下单支付必填)
| */
| private String subOpenId;
| /**
| * 分账标识。0:不分账,1:分账
| */
| private String profitSharing;
| /**
| * 地区标识,默认传520100
| */
| private String areaInfo;
| /**
| * 是否匿名。默认传0
| */
| private String payType;
| /**
| * 业务类型,默认传10408
| */
| private String businessType;
| }
|
|