package com.bcxin.survey.service.wechat;

import com.bcxin.survey.domain.survey.SurveyReform;

public interface SurveyReformService {

	boolean saveOrUpdate(SurveyReform photo);

	boolean delete(SurveyReform photo);

	SurveyReform findSurveyReformByOid(long oid);

}