MrShi
29 分钟以前 ffba2c405154eb6de9be00d9b5632e8a33ffc366
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.doumee.keyCabinet.http.param;
 
public class GetMemberIdByCodeParam {
    private String code;
 
    public GetMemberIdByCodeParam(String code) {
        this.code = code;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
}