whycrzg
2021-02-23 351b9a53cb9ecebdf8f79db0117f540d9c42c2a4
src/main/java/com/fgkj/mapper/impl/User_task_batt_checkMapper.java
@@ -2,23 +2,33 @@
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(Object obj) ;
   public boolean add(User_task_batt_check obj) ;
   //4.1添加作业并确定
   public String addPro(Object obj) ;
   //4.1作业管理(提交/复查作业)
   public boolean update(Object obj) ;
   public boolean update(User_task_batt_check obj) ;
   public boolean del(Object 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 serchByCondition(Object obj) ;
   public List<Task_Batt_Test> serchByCondition1(User_task_batt_check obj) ;// 不同bean参数调用 task_id
   public List serchByCondition(User_task obj) ;
}