puzhibing
2023-08-14 753c4aede53b07041841d9aa94859b59e366bd5d
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;
    }
}