package com.hmit.kernes.service;
import com.hmit.kernes.entity.Recommend;
import java.util.List;
import java.util.Map;
public interface RecommendService {
List<Recommend> queryList(Map<String, Object> map);
int queryTotal(Map<String, Object> map);
Recommend queryObject(Long recommendId);
void save(Recommend recommend);
void update(Recommend recommend);
void deleteBatch(Long[] ids);
}
-
Zhou Yang authored42192484