admin
2022-10-28 0e9b6603d4ae9d11c1fbc90257ce816c5807b8ff
app/src/main/java/com/yeshi/makemoney/app/service/inter/goldcorn/GoldCornConsumeRecordService.java
@@ -1,13 +1,11 @@
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.GoldCornConsumeRecord;
import com.yeshi.makemoney.app.service.inter.goldcorn.GoldCornConsumeRecordService;
import com.yeshi.makemoney.app.exception.goldcorn.GoldCornConsumeRecordException;
import com.yeshi.makemoney.app.service.query.goldcorn.GoldCornConsumeRecordQuery;
import java.math.BigDecimal;
import java.util.List;
public interface GoldCornConsumeRecordService {
@@ -34,7 +32,7 @@
    /**
    * 
    */
    public void add(GoldCornConsumeRecord goldCornConsumeRecord)  throws Exception;
    public void add(GoldCornConsumeRecord goldCornConsumeRecord)  throws GoldCornConsumeRecordException;
    /**
    * 
@@ -46,5 +44,14 @@
    */
    public void delete(List<String> idList) ;
    /**
     * @author hxh
     * @description 计算资金
     * @date 18:06 2022/5/10
     * @param: query
     * @return java.math.BigDecimal
     **/
    public BigDecimal sumMoney(GoldCornConsumeRecordQuery query);
}