We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Service:
public interface ChooseCourseService extends IMppService<ChooseCourse> { }
@Service public class ChooseCourseServiceImpl extends MppServiceImpl<ChooseCourseMapper, ChooseCourse> implements ChooseCourseService { }
Mapper
public interface ChooseCourseMapper extends MppBaseMapper<ChooseCourse> { int insertChosenCourse(Integer userId, Integer courseId); int deleteChosenCourse(Integer userId, Integer courseId); ChooseCourse selectChooseCourseByUserIdAndCourseId(Integer userId,Integer courseId); }
jdk 19 mpp-1.7.4
The text was updated successfully, but these errors were encountered:
先确认一下与mp版本是否兼容
Sorry, something went wrong.
No branches or pull requests
Service:
Mapper
jdk 19
mpp-1.7.4
The text was updated successfully, but these errors were encountered: