liusheng
8 天以前 9cc2f53b11205309754c2451be061ef5fc337f32
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.smartor.mapper;
 
import com.ruoyi.common.core.domain.entity.SysDept;
import com.smartor.domain.ExternalTaskInfo;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * 部门管理 数据层
 *
 * @author ruoyi
 */
@Mapper
public interface SysTaskMapper
{
 
    /**
     * 新增任务信息
     *
     * @param externalTaskInfo 任务信息
     * @return 结果
     */
    public int insertTask(ExternalTaskInfo externalTaskInfo);
 
 
}