doum
7 天以前 5f9bf98779e2c3e69324d75849efdda00868da4f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.doumee.service.business;
 
import com.doumee.core.model.PageData;
import com.doumee.core.model.PageWrap;
import com.doumee.dao.business.model.YwElectricalActions;
 
/**
 * 电表远程操作记录 Service
 */
public interface YwElectricalActionsService {
 
    PageData<YwElectricalActions> findPage(PageWrap<YwElectricalActions> pageWrap);
 
    /** 主动查询异步任务状态并同步本地操作/充值结果 */
    String queryAsyncResult(Integer id);
}