LoginResponse.java 434 Bytes
package com.ectrip.cyt.response;


import com.ectrip.cyt.base.Response;

/**
 * @author wenqiang.luo date:2016/11/1
 */
public class LoginResponse extends Response {

    private Long accountId;

    //get and set//////////////////////////////////////////////////////////////

    public Long getAccountId() {
        return accountId;
    }

    public void setAccountId(Long accountId) {
        this.accountId = accountId;
    }
}