19 lines
326 B
Java
19 lines
326 B
Java
package com.ag.log.mapper;
|
|
|
|
import com.ag.log.TopicResp;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
/**
|
|
* @Entity com.ag.log.TopicResp
|
|
*/
|
|
@Component
|
|
public interface TopicRespMapper extends BaseMapper<TopicResp> {
|
|
|
|
int deleteAllByParentId(String id);
|
|
}
|
|
|
|
|
|
|
|
|