backend/src/main/java/com/rongyichuang/auth/dto/WxLoginResponse.java
@@ -29,6 +29,31 @@
     * 微信会话密钥
     */
    private String sessionKey;
    /**
     * 请求是否成功
     */
    private Boolean success;
    /**
     * 响应消息
     */
    private String message;
    /**
     * 是否有员工角色
     */
    private Boolean hasEmployee;
    /**
     * 是否有评委角色
     */
    private Boolean hasJudge;
    /**
     * 是否有选手角色
     */
    private Boolean hasPlayer;
    public WxLoginResponse() {}
@@ -86,4 +111,44 @@
    public void setSessionKey(String sessionKey) {
        this.sessionKey = sessionKey;
    }
    public Boolean getSuccess() {
        return success;
    }
    public void setSuccess(Boolean success) {
        this.success = success;
    }
    public String getMessage() {
        return message;
    }
    public void setMessage(String message) {
        this.message = message;
    }
    public Boolean getHasEmployee() {
        return hasEmployee;
    }
    public void setHasEmployee(Boolean hasEmployee) {
        this.hasEmployee = hasEmployee;
    }
    public Boolean getHasJudge() {
        return hasJudge;
    }
    public void setHasJudge(Boolean hasJudge) {
        this.hasJudge = hasJudge;
    }
    public Boolean getHasPlayer() {
        return hasPlayer;
    }
    public void setHasPlayer(Boolean hasPlayer) {
        this.hasPlayer = hasPlayer;
    }
}