📄 groupservice.java
字号:
package com.m2.service;
import com.m2.entity.Group;
import com.m2.exception.*;
public interface GroupService {
public void addGroup(Group gp) throws M2Exception;
public void updateGroup(Group gp) throws M2Exception;
public void deleteGroup(Group gp) throws M2Exception;
public Group findGroupById(int id) throws M2Exception;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -