2025-11-25 15:44:19 +08:00
|
|
|
package com.klp.service;
|
|
|
|
|
|
|
|
|
|
import com.klp.domain.WmsDeliveryWaybill;
|
|
|
|
|
import com.klp.domain.vo.WmsDeliveryWaybillVo;
|
|
|
|
|
import com.klp.domain.bo.WmsDeliveryWaybillBo;
|
|
|
|
|
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-11-25
|
|
|
|
|
*/
|
|
|
|
|
public interface IWmsDeliveryWaybillService {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询发货单主
|
|
|
|
|
*/
|
|
|
|
|
WmsDeliveryWaybillVo queryById(Long waybillId);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询发货单主列表
|
|
|
|
|
*/
|
|
|
|
|
TableDataInfo<WmsDeliveryWaybillVo> queryPageList(WmsDeliveryWaybillBo bo, PageQuery pageQuery);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询发货单主列表
|
|
|
|
|
*/
|
|
|
|
|
List<WmsDeliveryWaybillVo> queryList(WmsDeliveryWaybillBo bo);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 新增发货单主
|
|
|
|
|
*/
|
|
|
|
|
Boolean insertByBo(WmsDeliveryWaybillBo bo);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 修改发货单主
|
|
|
|
|
*/
|
|
|
|
|
Boolean updateByBo(WmsDeliveryWaybillBo bo);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 校验并批量删除发货单主信息
|
|
|
|
|
*/
|
|
|
|
|
Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid);
|
2026-01-28 10:10:10 +08:00
|
|
|
|
|
|
|
|
Boolean changeStatus(WmsDeliveryWaybillBo bo);
|
2025-11-25 15:44:19 +08:00
|
|
|
}
|