Files
AG-ONE/ILogBizSystem/src/main/java/com/ag/log/mapper/TopicRespMapper.java

19 lines
326 B
Java
Raw Normal View History

2024-07-02 11:40:01 +08:00
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);
}