l3能源成本分摊(部分完成留存)

This commit is contained in:
2025-12-07 17:23:47 +08:00
parent b6328a94da
commit 59951b77c3
100 changed files with 14350 additions and 847 deletions

View File

@@ -3,6 +3,9 @@ package com.klp.ems.mapper;
import com.klp.ems.domain.EmsEnergyRate;
import com.klp.ems.domain.vo.EmsEnergyRateVo;
import com.klp.common.core.mapper.BaseMapperPlus;
import org.apache.ibatis.annotations.Param;
import java.time.LocalDate;
/**
* 能源费率currency 为 INT0=CNY,1=USD,2=EURMapper接口
@@ -12,4 +15,9 @@ import com.klp.common.core.mapper.BaseMapperPlus;
*/
public interface EmsEnergyRateMapper extends BaseMapperPlus<EmsEnergyRateMapper, EmsEnergyRate, EmsEnergyRateVo> {
/**
* 按能源类型与日期获取生效费率。
*/
EmsEnergyRate selectEffectiveRate(@Param("energyTypeId") Long energyTypeId,
@Param("calcDate") LocalDate calcDate);
}