package com.yeshi.makemoney.app.service.inter.goldcorn;
|
|
import java.lang.Exception;
|
import javax.annotation.Resource;
|
import java.util.Date;
|
import org.yeshi.utils.bean.BeanUtil;
|
import java.util.List;
|
import com.yeshi.makemoney.app.entity.goldcorn.GoldCornGetPrice;
|
import com.yeshi.makemoney.app.service.inter.goldcorn.GoldCornGetPriceService;
|
import com.yeshi.makemoney.app.service.query.goldcorn.GoldCornGetPriceQuery;
|
|
|
public interface GoldCornGetPriceService {
|
|
/**
|
* 获取列表
|
* @param goldCornGetPriceQuery
|
* @param page
|
* @param pageSize
|
* @return
|
*/
|
public List<GoldCornGetPrice> list(GoldCornGetPriceQuery goldCornGetPriceQuery, int page, int pageSize) ;
|
|
/**
|
*
|
*/
|
public long count(GoldCornGetPriceQuery goldCornGetPriceQuery) ;
|
|
/**
|
*
|
*/
|
public GoldCornGetPrice get(String id) ;
|
|
/**
|
*
|
*/
|
public void add(GoldCornGetPrice goldCornGetPrice) throws Exception;
|
|
/**
|
*
|
*/
|
public void update(GoldCornGetPrice goldCornGetPrice) ;
|
|
/**
|
*
|
*/
|
public void delete(List<String> idList) ;
|
|
|
}
|