|  |  | 
 |  |  | import com.zy.asrs.entity.OrderDetl; | 
 |  |  | import com.zy.asrs.service.OrderDetlService; | 
 |  |  | import com.baomidou.mybatisplus.service.impl.ServiceImpl; | 
 |  |  | import org.apache.poi.poifs.crypt.dsig.OOXMLURIDereferencer; | 
 |  |  | import org.springframework.stereotype.Service; | 
 |  |  |  | 
 |  |  | import java.util.List; | 
 |  |  | 
 |  |  |     public boolean increaseWorkQty(Long orderId, String matnr, String batch, Double workQty) { | 
 |  |  |         return this.baseMapper.increaseWorkQty(orderId, matnr, batch, workQty) > 0; | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     @Override | 
 |  |  |     public List<OrderDetl> selectByBrand(String brand) { | 
 |  |  |         return this.baseMapper.selectByBrand(brand); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     @Override | 
 |  |  |     public List<OrderDetl> selectByModel(String model) { | 
 |  |  |         return this.baseMapper.selectByModel(model); | 
 |  |  |     } | 
 |  |  | } |