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.
27 lines
606 B
27 lines
606 B
package com.teaching.backend.service.cms; |
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService; |
|
import com.teaching.backend.common.BaseResponse; |
|
import com.teaching.backend.model.entity.cms.CmsEssay; |
|
|
|
import java.util.List; |
|
|
|
/** |
|
* <p> |
|
* 服务类 |
|
* </p> |
|
* |
|
* @author author |
|
* @since 2024-08-13 |
|
*/ |
|
public interface ICmsEssayService extends IService<CmsEssay> { |
|
|
|
BaseResponse<String> addEssay(CmsEssay cmsEssay); |
|
|
|
BaseResponse<String> deleteEssay(List<Integer> ids); |
|
|
|
BaseResponse<String> editEssay(CmsEssay cmsEssay); |
|
|
|
BaseResponse<List<?>> queryEssay(Integer category_id); |
|
}
|
|
|