| | |
| | | |
| | | import com.baomidou.mybatisplus.plugins.Page; |
| | | import com.baomidou.mybatisplus.service.IService; |
| | | import com.zy.asrs.entity.DropdownValuesDto; |
| | | import com.zy.asrs.entity.OrderDetl; |
| | | import com.zy.asrs.entity.Pla; |
| | | import com.zy.asrs.entity.PlaQty; |
| | |
| | | |
| | | public interface PlaService extends IService<Pla> { |
| | | |
| | | Pla selectByBatchAndPackageNo(String batch, Integer packageNo); |
| | | List<DropdownValuesDto> getDropdownValues(); |
| | | |
| | | Pla selectByBatchAndPackageNo(String batch, Integer packageNo, String brand); |
| | | |
| | | void queryStock(OrderDetl orderDetl, List<PlaQty> plaQties); |
| | | |