package com.kidgrow.oprationcenter.service;
|
|
import com.kidgrow.oprationcenter.model.BusinessRecords;
|
import com.kidgrow.common.model.PageResult;
|
import com.kidgrow.common.service.ISuperService;
|
|
import java.util.Map;
|
|
/**
|
* 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br>
|
* @Description: 业务操作记录<br>
|
* @Project: 用户中心<br>
|
* @CreateDate: Created in 2020-04-01 09:37:05 <br>
|
* @Author: <a href="4345453@kidgrow.com">liuke</a>
|
* @version 1.0
|
*/
|
public interface IBusinessRecordsService extends ISuperService<BusinessRecords> {
|
/**
|
* 列表
|
* @param params
|
* @return
|
*/
|
PageResult<BusinessRecords> findList(Map<String, Object> params);
|
|
|
/**
|
* 根据BusinessRecords对象当做查询条件进行查询
|
* @param businessRecords
|
* @return BusinessRecords对象
|
*/
|
BusinessRecords findByObject(BusinessRecords businessRecords);
|
}
|