- package com.keao.edu.user.service;
- import com.keao.edu.common.service.BaseService;
- import com.keao.edu.user.entity.MusicTheory;
- public interface MusicTheoryService extends BaseService<Integer, MusicTheory> {
- void addMusicTheory(MusicTheory musicTheory);
- }
|