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

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