package com.lz.modules.flow.dao; /** *

* 流程图,lz_flow的父 服务类 *

* * @author quyixiao * @since 2020-10-13 */ import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; @Mapper public interface FlowChartMapper extends BaseMapper { FlowChart selectFlowChartById(@Param("id")Long id); Long insertFlowChart(FlowChart flowChart); int updateFlowChartById(FlowChart flowChart); int updateCoverFlowChartById(FlowChart flowChart); int deleteFlowChartById(@Param("id")Long id); }