dc2104form.java
来自「一个完整的物流系统」· Java 代码 · 共 72 行
JAVA
72 行
package jp.com.cost.dc.web.form;
import org.apache.struts.action.ActionForm;
public class DC2104Form extends ActionForm{
private String line;
private String boxCount;
private String boxWeight;
private String startPort;
private String aimPort;
/**
* @return the line
*/
public String getLine() {
return line;
}
/**
* @param line the line to set
*/
public void setLine(String line) {
this.line = line;
}
/**
* @return the boxCount
*/
public String getBoxCount() {
return boxCount;
}
/**
* @param boxCount the boxCount to set
*/
public void setBoxCount(String boxCount) {
this.boxCount = boxCount;
}
/**
* @return the boxWeight
*/
public String getBoxWeight() {
return boxWeight;
}
/**
* @param boxWeight the boxWeight to set
*/
public void setBoxWeight(String boxWeight) {
this.boxWeight = boxWeight;
}
/**
* @return the startPort
*/
public String getStartPort() {
return startPort;
}
/**
* @param startPort the startPort to set
*/
public void setStartPort(String startPort) {
this.startPort = startPort;
}
/**
* @return the aimPort
*/
public String getAimPort() {
return aimPort;
}
/**
* @param aimPort the aimPort to set
*/
public void setAimPort(String aimPort) {
this.aimPort = aimPort;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?