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;
|
2025-05-03 22:52:41 +08:00
|
|
|
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;
|
2025-05-03 22:52:41 +08:00
|
|
|
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-13 16:50:30 +08:00
|
|
|
/*
|
|
|
|
// 两个时间内查询
|
2025-05-05 16:45:44 +08:00
|
|
|
List<DicekeMininglossVo> findLossByMonthRange(int SmonthM, int SmonthY, int endMonthM, int endMonthY);
|
2025-05-13 16:50:30 +08:00
|
|
|
*/
|
2025-05-05 16:45:44 +08:00
|
|
|
|
|
|
|
|
|
|
|
List<DicekeMininglossVo> findLossByMonth(int monthV,int year);
|
2025-05-07 21:48:52 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
2025-04-27 16:49:30 +08:00
|
|
|
}
|