rain
2024-03-23 24b0b79158fc499f2e2f6b67e169b3b4dff97569
1
2
3
4
5
6
7
8
9
10
package com.dji.sample.patches.dao;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dji.sample.patches.model.DemoEntity;
import org.apache.ibatis.annotations.Mapper;
 
@Mapper
public interface DemoMapper extends BaseMapper<DemoEntity> {
    void insertJson(String json);
}