/******************************************************************************
|
* Copyright (C) 2015 Shenzhen Penguin Network Technology Co., Ltd
|
* All Rights Reserved.
|
* 本软件为深圳市企鹅网络科技有限公司开发研制。未经本公司正式书面同意,其他任何个人、团体
|
* 不得使用、复制、修改或发布本软件.
|
*****************************************************************************/
|
package com.qxueyou.scc.school.helper.judge;
|
|
import org.springframework.stereotype.Component;
|
|
import com.qxueyou.scc.school.helper.IJudgeUpdateStrategy;
|
|
/**
|
* 通用判断是否加分策略,默认增加
|
*
|
* @author ody.yuan
|
*
|
*/
|
@Component
|
public class CommonJudgeStrategy implements IJudgeUpdateStrategy {
|
|
public boolean checkUpdateFlag(String businessId,String userId ) {
|
|
return true;
|
|
}
|
|
}
|