21 lines
461 B
Java
21 lines
461 B
Java
|
|
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;
|
||
|
|
}
|