Files
xgy-oa/klp-ems/src/main/java/com/klp/ems/mapper/CostCoilDailyMapper.java

22 lines
610 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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);
}