/******************************************************************************
|
* 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;
|
|
}
|
|
}
|