31 lines
550 B
Java
31 lines
550 B
Java
package com.lz.modules.flow.dao;
|
||
/**
|
||
* <p>
|
||
* 流程图,lz_flow的父 服务类
|
||
* </p>
|
||
*
|
||
* @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> {
|
||
|
||
|
||
FlowChart selectFlowChartById(@Param("id")Long id);
|
||
|
||
|
||
Long insertFlowChart(FlowChart flowChart);
|
||
|
||
|
||
int updateFlowChartById(FlowChart flowChart);
|
||
|
||
|
||
int updateCoverFlowChartById(FlowChart flowChart);
|
||
|
||
|
||
int deleteFlowChartById(@Param("id")Long id);
|
||
|
||
|
||
} |