puzhibing
2023-08-17 9e4440e8ce1ed3c72932f3f62f4d05f55c9080e6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.supersavedriving.driver.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;
    }
}