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
407 B
13 lines
407 B
1 year ago
|
package com.teaching.backend.service.know;
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
import com.teaching.backend.model.dto.favour.knowFavour.KnowFavourAddRequest;
|
||
|
import com.teaching.backend.model.dto.know.KnowAddRequest;
|
||
|
import com.teaching.backend.model.entity.know.Know;
|
||
|
|
||
|
|
||
|
public interface KnowService extends IService<Know> {
|
||
|
public Boolean add(KnowAddRequest knowAddRequest);
|
||
|
}
|
||
|
|