package com.bcxin.survey.service.wechat;

import com.bcxin.survey.domain.survey.Survey_Photo;

import java.util.List;

public interface SurveyPhotoService {

	boolean saveOrUpdate(Survey_Photo photo);

	boolean delete(Survey_Photo photo);
	
	Survey_Photo findSurveyPhotoByOid(long oid);
	void deleteAllSurveyPhotoByOidList(List<Long> idList);
	List<String> findPhotoListByInfoId(long infoId);

}