wl_management/src/main/resources/mapper/flow/dao/FlowChartMapper.java
2020-10-13 15:03:17 +08:00

31 lines
550 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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);
}