派生自 projectDept/qhighschool

EricsHu
2022-12-05 068fc7f2e81178e55fa191a13709af64b1a163f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/******************************************************************************
 * Copyright (C) 2015 Shenzhen Penguin Network Technology Co., Ltd
 * All Rights Reserved.
 * 本软件为深圳市企鹅网络科技有限公司开发研制。未经本公司正式书面同意,其他任何个人、团体
 * 不得使用、复制、修改或发布本软件.
 *****************************************************************************/
package com.qxueyou.scc.school.helper;
 
/**
 * 每日积分上限通用策略,目前只有总共积分,未涉及到单个模块
 * 
 * @author ody.yuan
 *
 */
public interface IJudgeLimitStrategy {
    
    /**
     * 检测积分上限
     * @param userId
     * @return
     */
    boolean checkLimitFlag(String userId) ;
 
}