public void pricing(Packing type, double price) { // 更新包装价格 pricePO.pricing(type, price); this.record(); }
public void pricing(Express type, double price) { // 更新快递价格 pricePO.pricing(type, price); this.record(); }
public double getPrice(Packing type) { return pricePO.getPrice(type); }
public double getPrice(TransportType type) { return pricePO.getPrice(type); }
public double getPrice(Express type) { return pricePO.getPrice(type); }