package com.yeshi.makemoney.app.service.inter.goldcorn;
|
|
import com.ks.lib.common.exception.ParamsException;
|
import com.yeshi.makemoney.app.entity.goldcorn.GoldCornSettleRecord;
|
import com.yeshi.makemoney.app.exception.goldcorn.GoldCornSettleRecordException;
|
import com.yeshi.makemoney.app.service.query.goldcorn.GoldCornSettleRecordQuery;
|
|
import java.util.List;
|
|
|
public interface GoldCornSettleRecordService {
|
|
/**
|
* 获取列表
|
* @param goldCornSettleRecordQuery
|
* @param page
|
* @param pageSize
|
* @return
|
*/
|
public List<GoldCornSettleRecord> list(GoldCornSettleRecordQuery goldCornSettleRecordQuery, int page, int pageSize) ;
|
|
/**
|
*
|
*/
|
public long count(GoldCornSettleRecordQuery goldCornSettleRecordQuery) ;
|
|
/**
|
*
|
*/
|
public GoldCornSettleRecord get(String id) ;
|
|
/**
|
*
|
*/
|
public void add(GoldCornSettleRecord goldCornSettleRecord) throws ParamsException, GoldCornSettleRecordException;
|
|
/**
|
*
|
*/
|
public void update(GoldCornSettleRecord goldCornSettleRecord) ;
|
|
/**
|
*
|
*/
|
public void delete(List<String> idList) ;
|
|
|
}
|