package com.bcxin.survey.dao.report;

import com.bcxin.survey.domain.survey.Survey_Info;
import com.bcxin.survey.enums.report.SurveyStep;

import java.util.List;

public interface CMSDao {
	
	List<Survey_Info> getSurvey_InfoFromCMSForFix(SurveyStep surveyStep,String activityType,String addressType);

	int getSurveyInfoCountFromCMSForFix(SurveyStep surveyStep,String activityType,String addressType);

	List<Survey_Info> findSurveyInfoByTags(String tags);

	Survey_Info findSurveyInfoByAid(String aid);

	void findSurveyTagsFromCMS();

}