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
377 B
13 lines
377 B
11 months ago
|
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 IknowService {
|
||
|
|
||
|
}
|