You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
386 B
13 lines
386 B
package com.teaching.service.impl; |
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
|
import com.teaching.mapper.KnowMapper; |
|
import com.teaching.model.entity.Know; |
|
import com.teaching.service.IknowService; |
|
import org.springframework.stereotype.Service; |
|
|
|
@Service |
|
public class IknowServiceimpl extends ServiceImpl<KnowMapper,Know> implements IknowServic |
|
e { |
|
|
|
}
|
|
|