mirror of
https://github.com/Hello-hao/Tbed.git
synced 2024-04-21 12:32:10 +00:00
20 lines
365 B
Java
20 lines
365 B
Java
package cn.hellohao.service;
|
|
|
|
import cn.hellohao.pojo.Images;
|
|
import cn.hellohao.pojo.ImgTemp;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
@Service
|
|
public interface ImgTempService {
|
|
List<Images> selectDelImgUidList(String datatime);
|
|
|
|
Integer delImgAndExp(String imguid);
|
|
|
|
Integer insertImgExp(ImgTemp imgDataExp);
|
|
}
|