package com.xcong.farmer.cms.modules.system.service; import com.baomidou.mybatisplus.extension.service.IService; import com.xcong.farmer.cms.common.response.Result; import com.xcong.farmer.cms.modules.system.dto.AdminAddMessageDto; import com.xcong.farmer.cms.modules.system.dto.AdminDeleteDto; import com.xcong.farmer.cms.modules.system.dto.AdminMessageBoardDto; import com.xcong.farmer.cms.modules.system.entity.MessageBoardEntity; import javax.servlet.http.HttpServletRequest; public interface IMessageBoardService extends IService { Result getMessageInPage(AdminMessageBoardDto adminMessageBoardDto); Result delObjs(AdminDeleteDto adminDeleteDto); Result addMessage(HttpServletRequest request, AdminAddMessageDto adminAddMessageDto); }