package com.cabletech.business.ah.rating.service;
import com.cabletech.business.ah.rating.model.MonthResultForm;
import com.cabletech.common.util.Page;
/**
* 月结果服务
* @author zhaobi
*/
public interface MonthResultService {
/**
* 查询列表的数据
* @param entity 条件信息
* @param page 分页信息
*/
@SuppressWarnings("rawtypes")
Page queryPage(MonthResultForm entity, Page page);
}