package com.jdc.jdcproject.service; import com.baomidou.mybatisplus.extension.service.IService; import com.jdc.jdcproject.entity.DicekeMiningloss; import com.jdc.jdcproject.entity.VO.DicekeMininglossVo; import com.jdc.jdcproject.utils.Result; import java.time.LocalDate; import java.util.List; /** *

* 采剥与贫损表; 服务类 *

* * @author haoyanlu * @since 2025-04-26 */ public interface IDicekeMininglossService extends IService { List findAllLoss(); int savedml(DicekeMininglossVo dicekeMininglossVo); List getLossByMonthRange(LocalDate Month, LocalDate endMonth); List getLossByMonth(LocalDate Month); }