doum
3 天以前 7ec3683c8e41460f4bb0bd3a6677198742313e2b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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 com.doumee.dao.business.vo.WarningTypeStatVO;
 
import java.util.List;
 
/**
 * 智能电表报警记录Service
 */
public interface YwElectricalWarningService {
 
    PageData<YwElectricalWarning> findPage(PageWrap<YwElectricalWarning> pageWrap);
 
    long count(YwElectricalWarning model);
 
    String syncFromPlatform();
 
    List<WarningDefOptionDTO> listWarningDefOptions();
 
    List<WarningTypeStatVO> warningTypeStats();
}