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