doum
2026-05-26 f4d592f3626f94117d8a4eb22176a28290931980
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.doumee.service.business;
 
import com.doumee.core.model.PageData;
import com.doumee.core.model.PageWrap;
import com.doumee.dao.business.dto.WarningDefOptionDTO;
import com.doumee.dao.business.model.YwElectricalWarning;
 
import java.util.List;
 
/**
 * 智能电表报警记录Service
 */
public interface YwElectricalWarningService {
 
    PageData<YwElectricalWarning> findPage(PageWrap<YwElectricalWarning> pageWrap);
 
    long count(YwElectricalWarning model);
 
    String syncFromPlatform();
 
    List<WarningDefOptionDTO> listWarningDefOptions();
}