integrated_traffic/src/main/java/com/zcloud/service/hiddenDangerCheckStandard/CustomService.java

29 lines
478 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.hiddenDangerCheckStandard;
import com.zcloud.entity.PageData;
import java.util.List;
/**
* 说明:清单管理
* 作者luoxiaobao
* 时间2020-12-30
* 官网www.zcloudchina.com
*/
public interface CustomService {
/**新增
* @param pd
* @throws Exception
*/
public void save(PageData pd)throws Exception;
/**列表
* @param pd
* @throws Exception
*/
public List<PageData> listAll(PageData pd)throws Exception;
}