21 lines
461 B
Java
Raw Normal View History

2025-09-19 14:46:51 +08:00
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<Bulletin> {
void saveBulletin(BulletinVo bulletin) throws IOException;
void updateBulletind(BulletinVo bulletin) throws IOException;
}