liujie
2023-08-16 5cb1979f05446792cc33a8cb6b7aaae906da5a70
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.stylefeng.guns.modular.system.util.MallBook.model;
 
 
public class QueryBalance {
    /**业务类型编号,必须和接口文档一致*/
    public static String SERVICE_CODE = "queryBalance";
    private String userId;//子商户编号
 
    public String getUserId() {
        return userId;
    }
 
    public void setUserId(String userId) {
        this.userId = userId;
    }
}