l3能源成本分摊(部分完成留存)
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
package com.klp.ems.service;
|
||||
|
||||
import com.klp.ems.domain.WmsEnergyAreaLink;
|
||||
import com.klp.ems.domain.vo.WmsEnergyAreaLinkVo;
|
||||
import com.klp.ems.domain.bo.WmsEnergyAreaLinkBo;
|
||||
import com.klp.common.core.page.TableDataInfo;
|
||||
import com.klp.common.core.domain.PageQuery;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* EMS能源与库区映射关系 Service接口
|
||||
*
|
||||
* @author Joshi
|
||||
* @date 2025-12-08
|
||||
*/
|
||||
public interface IWmsEnergyAreaLinkService {
|
||||
|
||||
/**
|
||||
* 查询单条
|
||||
*/
|
||||
WmsEnergyAreaLinkVo queryById(Long linkId);
|
||||
|
||||
/**
|
||||
* 查询列表
|
||||
*/
|
||||
TableDataInfo<WmsEnergyAreaLinkVo> queryPageList(WmsEnergyAreaLinkBo bo, PageQuery pageQuery);
|
||||
|
||||
/**
|
||||
* 查询全部列表
|
||||
*/
|
||||
List<WmsEnergyAreaLinkVo> queryList(WmsEnergyAreaLinkBo bo);
|
||||
|
||||
/**
|
||||
* 新增
|
||||
*/
|
||||
Boolean insertByBo(WmsEnergyAreaLinkBo bo);
|
||||
|
||||
/**
|
||||
* 修改
|
||||
*/
|
||||
Boolean updateByBo(WmsEnergyAreaLinkBo bo);
|
||||
|
||||
/**
|
||||
* 删除
|
||||
*/
|
||||
Boolean deleteById(Long linkId);
|
||||
|
||||
/**
|
||||
* 批量删除
|
||||
*/
|
||||
Boolean deleteByIds(Collection<Long> linkIds);
|
||||
}
|
||||
Reference in New Issue
Block a user