qa-prevention-gwj/src/main/java/com/zcloud/service/firemanager/FireQualifiedPhotosService....

27 lines
599 B
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.zcloud.service.firemanager;
import com.zcloud.entity.Page;
import com.zcloud.entity.PageData;
import org.springframework.web.multipart.MultipartFile;
import java.util.List;
/**
* 说明TODO
* 作者wangxuan
* 官网www.zcloudchina.com
*/
public interface FireQualifiedPhotosService {
List<PageData> datalistPage(Page page);
void edit(PageData pd);
void removeAll(PageData pd);
void add(MultipartFile[]files,PageData pd) throws Exception;
List<PageData> listforSelect(PageData pd);
List<PageData> getPointQualifiedPhotos(PageData pageData);
}