Newer
Older
huludao / src / main / java / com / newfiber / api / pc / dao / TaskProcessMapper.java
@新烽开发者 新烽开发者 on 19 Jul 590 bytes init
package com.newfiber.api.pc.dao;


import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.newfiber.api.pc.model.entity.TaskProcess;
import com.newfiber.api.pc.model.vo.TaskProcessVo;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;

import java.util.List;

@Repository
public interface TaskProcessMapper extends BaseMapper<TaskProcess> {

    List<TaskProcessVo> selectTaskList(@Param("taskId")Long taskId,@Param("unitId")Long unitId);

    int insertSelective(TaskProcess record);

    int deleteByTaskId(@Param("taskId") Long taskId);
}