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

@@ -0,0 +1,19 @@
package com.klp.ems.service;
import java.time.LocalDate;
/**
* 综合能源分摊调度/执行服务
*/
public interface IEnergyAllocationService {
/**
* 根据日期+能源类型触发一次分摊,若 energyTypeId 为空则针对所有已配置能源类型。
*/
void dispatch(LocalDate calcDate, Long energyTypeId, String allocationScope);
/**
* 将指定任务标记为需要重新计算并立即执行。
*/
void rerunTask(Long taskId);
}