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,21 @@
package com.klp.ems.mapper;
import com.klp.ems.domain.CostCoilDailyEnergy;
import org.apache.ibatis.annotations.Mapper;
/**
* 访问 wms_cost_coil_daily仅更新能源成本字段
*/
@Mapper
public interface CostCoilDailyMapper {
/**
* 更新成本日表中的能源成本与拆分信息,按 coil_id + calc_date 命中。
*/
int updateEnergyCost(CostCoilDailyEnergy energyCost);
/**
* 查询成本日表现有的能源成本信息energy_cost_amount、energy_cost_breakdown
*/
CostCoilDailyEnergy selectEnergyCost(CostCoilDailyEnergy energyCost);
}