| File was renamed from src/main/java/com/dji/sample/patches/dao/DemoMapper.java |
| | |
| | | import org.apache.ibatis.annotations.Insert; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | import java.time.LocalDateTime; |
| | | |
| | | @Mapper |
| | | public interface DemoMapper extends BaseMapper<DemoEntity> { |
| | | public interface ShpToDataSourceMapper extends BaseMapper<DemoEntity> { |
| | | @Insert("insert into tb_lot_info (dkfw,bsm,create_time,update_time) values (#{json},#{bsm},#{createTime},#{updateTime})") |
| | | void insertJson(String json,String bsm, int createTime, int updateTime); |
| | | |