12 lines
289 B
Java
12 lines
289 B
Java
|
package com.timeline.file.dao;
|
||
|
|
||
|
import com.timeline.file.entity.ImageInfo;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
||
|
@Mapper
|
||
|
public interface ImageInfoMapper {
|
||
|
void insert(ImageInfo imageInfo);
|
||
|
String selectObjectKeyById(String objectKey);
|
||
|
void delete(String objectKey);
|
||
|
}
|