Files
klp-oa/klp-wms/src/main/java/com/klp/service/IWmsPayableService.java
JR fe1ca4e1a9 refactor(klp-wms):移除未使用的导入语句- 在 WmsOrderService、WmsPayableService 和 WmsReceivableService 接口中移除了未使用的实体类导入
- 在 WmsPayableController 和 WmsPayableServiceImpl 中移除了未使用的 WmsReceivable 导入
- 优化了 WmsReceivableServiceImpl 中的代码格式
2025-08-13 16:02:35 +08:00

54 lines
1.2 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.vo.WmsPayableVo;
import com.klp.domain.bo.WmsPayableBo;
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 2025-08-13
*/
public interface IWmsPayableService {
/**
* 查询应付款管理(宽松版)
*/
WmsPayableVo queryById(Long payableId);
/**
* 查询应付款管理(宽松版)列表
*/
TableDataInfo<WmsPayableVo> queryPageList(WmsPayableBo bo, PageQuery pageQuery);
/**
* 查询应付款管理(宽松版)列表
*/
List<WmsPayableVo> queryList(WmsPayableBo bo);
/**
* 新增应付款管理(宽松版)
*/
Boolean insertByBo(WmsPayableBo bo);
/**
* 修改应付款管理(宽松版)
*/
Boolean updateByBo(WmsPayableBo bo);
/**
* 校验并批量删除应付款管理(宽松版)信息
*/
Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid);
/**
* 更新应付款管理(宽松版)的已付款金额和添加流水
*/
Boolean updatePaidAmountAndAddJournal(WmsPayableBo bo);
}