package com.cdzy.activity.service; import com.cdzy.activity.model.vo.BulletinVo; import com.mybatisflex.core.service.IService; import com.cdzy.activity.model.Bulletin; import java.io.IOException; /** * 服务层。 * * @author attiya * @since 2025-09-18 */ public interface BulletinService extends IService { void saveBulletin(BulletinVo bulletin) throws IOException; void updateBulletind(BulletinVo bulletin) throws IOException; }