You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package com.zh.project0512.service;
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.Wrapper;
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
|
import com.zh.project0512.model.Reference;
|
|
|
|
import com.zh.project0512.model.Task;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* <p>
|
|
|
|
* 服务类
|
|
|
|
* </p>
|
|
|
|
*
|
|
|
|
* @author zh
|
|
|
|
* @since 2022-05-21
|
|
|
|
*/
|
|
|
|
public interface ITaskService extends IService<Task> {
|
|
|
|
public void add(Task task);
|
|
|
|
IPage<Integer> idList(IPage iPage, List<Integer> tagIdList, List<Integer> brandIdList, @Param("ew") Wrapper<Reference> queryWrapper);
|
|
|
|
List<Map> list(String openid,List<Integer> list, List<Integer> tagIdList, List<Integer> brandIdList, @Param("ew") Wrapper<Reference> queryWrapper);
|
|
|
|
Task detailById(String openid,int id);
|
|
|
|
}
|