You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
554 B
14 lines
554 B
package irbs.feature.service;
|
|
|
|
import io.sc.platform.orm.service.DaoService;
|
|
import io.sc.platform.orm.service.support.QueryParameter;
|
|
import irbs.feature.jpa.entity.CustFeatureParams;
|
|
import irbs.feature.jpa.repository.CustFeatureParamsRepository;
|
|
import org.springframework.data.domain.Page;
|
|
|
|
public interface CustFeatureParamsService extends DaoService<CustFeatureParams, String, CustFeatureParamsRepository> {
|
|
|
|
Page<CustFeatureParams> findLastMonthDataForPage(QueryParameter queryParameter) throws Exception;
|
|
|
|
int findLastMonthDataCount();
|
|
}
|
|
|