JdcProject/src/main/java/com/jdc/jdcproject/mapper/DicekeMininglossMapper.java

34 lines
773 B
Java
Raw Normal View History

2025-04-27 16:49:30 +08:00
package com.jdc.jdcproject.mapper;
import com.jdc.jdcproject.entity.DicekeMiningloss;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.jdc.jdcproject.entity.VO.DicekeMininglossVo;
2025-05-07 21:48:52 +08:00
import com.jdc.jdcproject.entity.VO.DicekeTotalMiningVo;
2025-04-27 16:49:30 +08:00
import org.apache.ibatis.annotations.Mapper;
2025-05-05 16:45:44 +08:00
import java.time.LocalDate;
import java.util.List;
2025-04-27 16:49:30 +08:00
/**
* <p>
* 采剥与贫损表; Mapper 接口
* </p>
*
* @author haoyanlu
* @since 2025-04-26
*/
@Mapper
public interface DicekeMininglossMapper extends BaseMapper<DicekeMiningloss> {
2025-05-05 01:01:19 +08:00
List<DicekeMininglossVo> findAllLoss();
2025-05-05 16:45:44 +08:00
List<DicekeMininglossVo> findLossByMonthRange(int SmonthM, int SmonthY, int endMonthM, int endMonthY);
List<DicekeMininglossVo> findLossByMonth(int monthV,int year);
2025-05-07 21:48:52 +08:00
2025-04-27 16:49:30 +08:00
}