对比新文件 |
| | |
| | | package com.gk.firework.Service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.gk.firework.Domain.StandardEducationLeger; |
| | | import com.gk.firework.Domain.UserInfo; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | public interface StandardEducationLegerService extends IService<StandardEducationLeger> { |
| | | |
| | | IPage selectPage(Page<StandardEducationLeger> page, Map filter, UserInfo user); |
| | | |
| | | void addStandardEducationLeger(StandardEducationLeger standardEducationLeger, UserInfo user); |
| | | |
| | | void modStandardEducationLeger(StandardEducationLeger standardEducationLeger, UserInfo user); |
| | | |
| | | void delStandardEducationLeger(Long id, UserInfo user); |
| | | |
| | | } |