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
| 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;
| }
|
|