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