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

This commit is contained in:
2025-12-08 15:38:49 +08:00
parent 59951b77c3
commit a467454603
12 changed files with 692 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package com.klp.ems.mapper;
import com.klp.ems.domain.WmsEnergyAreaLink;
import com.klp.ems.domain.vo.WmsEnergyAreaLinkVo;
import com.klp.common.core.mapper.BaseMapperPlus;
/**
* EMS能源与库区映射关系 Mapper接口
*
* @author Joshi
* @date 2025-12-08
*/
public interface WmsEnergyAreaLinkMapper extends BaseMapperPlus<WmsEnergyAreaLinkMapper, WmsEnergyAreaLink, WmsEnergyAreaLinkVo> {
}