| | |
| | | package com.sinata.system.service; |
| | | |
| | | import com.sinata.common.entity.PageDTO; |
| | | import com.sinata.system.domain.MwBox; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.sinata.system.domain.dto.MwBoxDTO; |
| | | import com.sinata.system.domain.query.MwBoxPageQuery; |
| | | import com.sinata.system.domain.vo.BoxStatisticsVO; |
| | | import com.sinata.system.domain.vo.MwBoxVO; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @since 2024-12-02 |
| | | */ |
| | | public interface MwBoxService extends IService<MwBox> { |
| | | /** |
| | | * 转运箱数据统计 |
| | | * |
| | | * @return |
| | | */ |
| | | BoxStatisticsVO getBoxStatistics(); |
| | | |
| | | /** |
| | | * 转运箱分页列表 |
| | | * |
| | | * @param query |
| | | * @return |
| | | */ |
| | | PageDTO<MwBoxVO> pageList(MwBoxPageQuery query); |
| | | |
| | | /** |
| | | * 新增转运箱 |
| | | * |
| | | * @param boxNumberStart |
| | | * @param boxNumberEnd |
| | | * @return |
| | | */ |
| | | void add(String boxNumberStart, String boxNumberEnd); |
| | | |
| | | /** |
| | | * 编辑转运箱状态 |
| | | * |
| | | * @param dtoList |
| | | * @return |
| | | */ |
| | | void editBatch(List<MwBoxDTO> dtoList); |
| | | } |