package com.thhy.engineering.modules.biz.notice.service;
|
|
import com.thhy.general.common.BasicResult;
|
import org.springframework.web.multipart.MultipartFile;
|
|
import java.util.Map;
|
|
public interface SysNoticeService {
|
BasicResult noticeInsert(Map<String, Object> values);
|
|
BasicResult uploadImage(MultipartFile file, String paths);
|
|
BasicResult noticeUpdate(Map<String, Object> values);
|
|
BasicResult noticeList(Map<String, Object> values);
|
|
BasicResult noticeInfo(String noticeId);
|
|
BasicResult noticeDel(String noticeId);
|
|
BasicResult noticeOff(Map<String, Object> values);
|
|
}
|