lyh
13 小时以前 78aeb8a8c97a884a640d46755e4be706bde48b7d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.lxzn.framework.domain.auth.response;
 
import com.lxzn.framework.domain.ucenter.Menu;
import com.lxzn.framework.model.response.ResponseResult;
import com.lxzn.framework.model.response.ResultCode;
import lombok.Data;
import lombok.NoArgsConstructor;
 
import java.util.List;
 
/**
 * Created by mrt on 2018/5/21.
 */
@Data
@NoArgsConstructor
public class LoginResult extends ResponseResult {
    private String token;
 
    public LoginResult(ResultCode resultCode, String token) {
        super(resultCode);
        this.token = token;
    }
}