doum
3 天以前 3c7399c25c0f35c8aa7cb6af1935e31d1a3f0102
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.doumee.service.business;
 
import com.doumee.core.model.PageData;
import com.doumee.core.model.PageWrap;
import com.doumee.dao.business.model.YwConditionerGateway;
import com.doumee.dao.business.model.YwConditionerGatewayLog;
 
public interface YwConditionerGatewayService {
 
    PageData<YwConditionerGateway> findPage(PageWrap<YwConditionerGateway> pageWrap);
 
    PageData<YwConditionerGatewayLog> gatewayLogPage(PageWrap<YwConditionerGatewayLog> pageWrap);
 
    String syncAll();
}