whycrzg
2021-02-23 351b9a53cb9ecebdf8f79db0117f540d9c42c2a4
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
29
30
31
32
33
34
package com.fgkj.mapper.impl;
 
import java.util.List;
 
import com.fgkj.dto.Task_Batt_Test;
import com.fgkj.dto.User_task;
import com.fgkj.dto.User_task_batt_check;
import org.apache.ibatis.annotations.Delete;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Select;
import org.springframework.stereotype.Repository;
 
public interface User_task_batt_checkMapper{
 
    public boolean add(User_task_batt_check obj) ;
 
    //4.1添加作业并确定
    public String addPro(Object obj) ;
 
 
    //4.1作业管理(提交/复查作业)
    public boolean update(User_task_batt_check obj) ;
 
    @Delete("delete from db_user.tb_user_task_batt_check where num=#{num}")
    public int del(User_task_batt_check obj) ;
 
    public List searchAll() ;
 
    //4.1根据task_id查询user_task_batt_check信息
    public List<Task_Batt_Test> serchByCondition1(User_task_batt_check obj) ;// 不同bean参数调用 task_id
 
    public List serchByCondition(User_task obj) ;
 
}