package cn.com.tenlion.dao.plancheck; import ink.wgink.exceptions.SaveException; import org.springframework.stereotype.Repository; import java.util.Map; /** * @ClassName: IPlanCheckDao * @Description: * @Author: CodeFactory * @Date: 2021-05-04 14:47:38 * @Version: 3.0 **/ @Repository public interface IPlanCheckDao { /** * 新增 * * @param params * @throws SaveException */ void save(Map params) throws SaveException; }