Files
klp-oa/klp-wms/src/main/java/com/klp/service/IWmsCoilStatisticsSummaryService.java
Joshi 891ec659de refactor(service): 修改钢卷统计汇总服务返回值类型
- 将 insertByBo 方法返回值从 Boolean 改为 WmsCoilStatisticsSummaryVo
- 更新控制器方法返回完整的业务对象而不是布尔值
- 实现新增后查询并返回完整的汇总记录信息
- 提供更丰富的新增操作响应数据
2026-03-10 14:03:38 +08:00

50 lines
1.5 KiB
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.service;
import com.klp.domain.WmsCoilStatisticsSummary;
import com.klp.domain.vo.WmsCoilStatisticsSummaryVo;
import com.klp.domain.bo.WmsCoilStatisticsSummaryBo;
import com.klp.common.core.page.TableDataInfo;
import com.klp.common.core.domain.PageQuery;
import java.util.Collection;
import java.util.List;
/**
* 钢卷生产统计汇总数据透视结果持久化Service接口
*
* @author klp
* @date 2026-03-07
*/
public interface IWmsCoilStatisticsSummaryService {
/**
* 查询钢卷生产统计汇总(数据透视结果持久化)
*/
WmsCoilStatisticsSummaryVo queryById(Long summaryId);
/**
* 查询钢卷生产统计汇总(数据透视结果持久化)列表
*/
TableDataInfo<WmsCoilStatisticsSummaryVo> queryPageList(WmsCoilStatisticsSummaryBo bo, PageQuery pageQuery);
/**
* 查询钢卷生产统计汇总(数据透视结果持久化)列表
*/
List<WmsCoilStatisticsSummaryVo> queryList(WmsCoilStatisticsSummaryBo bo);
/**
* 新增钢卷生产统计汇总(数据透视结果持久化)
*/
WmsCoilStatisticsSummaryVo insertByBo(WmsCoilStatisticsSummaryBo bo);
/**
* 修改钢卷生产统计汇总(数据透视结果持久化)
*/
Boolean updateByBo(WmsCoilStatisticsSummaryBo bo);
/**
* 校验并批量删除钢卷生产统计汇总(数据透视结果持久化)信息
*/
Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid);
}