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:35
| */
| @Data
| public class GoodsInfo {
| /**
| * 商户号
| */
| private String merchantCode;
| /**
| * 付款商户号
| */
| private String custId;
| /**
| * 付款方名称
| */
| private String custName;
| /**
| * 分账标识。0:不分账,1:分账
| */
| private String profitSharing;
| }
|
|