2024-02-28 19:16:25 +08:00
|
|
|
package com.zcloud.service.comprehensive;
|
|
|
|
|
|
|
|
import com.zcloud.entity.Page;
|
|
|
|
import com.zcloud.entity.PageData;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
public interface TrafficSecurityCustomerManagementService {
|
|
|
|
void save(PageData pd);
|
|
|
|
|
|
|
|
List<PageData> listForSecurityCustomerManagement(Page page);
|
2024-03-21 08:42:15 +08:00
|
|
|
|
|
|
|
void saveContact(PageData contactPd);
|
|
|
|
|
|
|
|
void delete(PageData pd);
|
2024-04-09 21:51:06 +08:00
|
|
|
|
|
|
|
List<PageData> getTrafficCustomerSelectList(PageData pd) throws Exception;
|
2024-02-28 19:16:25 +08:00
|
|
|
}
|