package cn.autoform.web.mapper.forminterface; import java.util.List; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import cn.autoform.db.entity.FormInterfaceEntity; @Mapper public interface FormInterfaceMapper { // 新增一个接口 int createFormInterface(FormInterfaceEntity formInterfaceEntity); // 表单接口管理表中取出数据 List getFormInterfaceList(@Param("tenantID") String tenantID, @Param("formID") String formID); // 删除一个接口 int deleteFormInterface(@Param("tenantID") String tenantID, @Param("formID") String formID, @Param("interfaceName") String interfaceName); }