Exemplo n.º 1
0
  public void pricing(Packing type, double price) {
    // 更新包装价格
    pricePO.pricing(type, price);

    this.record();
  }
Exemplo n.º 2
0
  public void pricing(Express type, double price) {
    // 更新快递价格
    pricePO.pricing(type, price);

    this.record();
  }
Exemplo n.º 3
0
 public double getPrice(Packing type) {
   return pricePO.getPrice(type);
 }
Exemplo n.º 4
0
 public double getPrice(TransportType type) {
   return pricePO.getPrice(type);
 }
Exemplo n.º 5
0
 public double getPrice(Express type) {
   return pricePO.getPrice(type);
 }