package com.topsun.posclient.sales.core.service; import java.util.List; import com.topsun.posclient.common.POSException; import com.topsun.posclient.common.service.IBaseService; import com.topsun.posclient.datamodel.GoldPrice; /** * @author Dong * */ public interface IGoldPriceService extends ISalesService { /** * 更新实时金价 * @param newGoldPrices * @return * @throws POSException */ public boolean updateGoldPriceByMtartCode(List<GoldPrice> newGoldPrices) throws POSException; }