?? bound.java
字號:
package com.power.pipeengine.Entity;
public class Bound
{
private String _type;
private double _bndQty;
private double _penaltyCost;
public Bound( String bndType, double qty, double cost ) {
_type = bndType;
_bndQty = qty;
_penaltyCost = cost;
}
public String getBndType() {
return _type;
}
public double getBndQty() {
return _bndQty;
}
public double getPenaltyCost() {
return _penaltyCost;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -