init: 导入项目

This commit is contained in:
fengjun
2024-07-02 11:40:01 +08:00
commit 4c8e6701f2
7158 changed files with 1199718 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
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);
}