📄 buyform.java
字号:
/*
* Created on 2006-12-28
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package stock.form;
import org.apache.struts.action.ActionForm;
/**
* @author yuhui
*
* TODO To change the template for this generated type comment go to Window -
* Preferences - Java - Code Style - Code Templates
*/
public class BuyForm extends ActionForm {
/**
*
*/
private static final long serialVersionUID = 1L;
String mmlb;
String stkID;
String userName;
String priOfBuy;
String priStpDwn;
String priStpUp;
String numOfBuy;
String cashCanUsed;
String numCanBuy;
String reason;
String typSelBuy;
String price;
String num;
/**
* @return Returns the mmlb.
*/
public String getMmlb() {
return mmlb;
}
/**
* @param mmlb
* The mmlb to set.
*/
public void setMmlb(String mmlb) {
this.mmlb = mmlb;
}
/**
* @return Returns the cashCanUsed.
*/
public String getCashCanUsed() {
return cashCanUsed;
}
/**
* @param cashCanUsed
* The cashCanUsed to set.
*/
public void setCashCanUsed(String cashCanUsed) {
this.cashCanUsed = cashCanUsed;
}
/**
* @return Returns the num.
*/
public String getNum() {
return num;
}
/**
* @param num
* The num to set.
*/
public void setNum(String num) {
this.num = num;
}
/**
* @return Returns the numCanBuy.
*/
public String getNumCanBuy() {
return numCanBuy;
}
/**
* @param numCanBuy
* The numCanBuy to set.
*/
public void setNumCanBuy(String numCanBuy) {
this.numCanBuy = numCanBuy;
}
/**
* @return Returns the numOfBuy.
*/
public String getNumOfBuy() {
return numOfBuy;
}
/**
* @param numOfBuy
* The numOfBuy to set.
*/
public void setNumOfBuy(String numOfBuy) {
this.numOfBuy = numOfBuy;
}
/**
* @return Returns the price.
*/
public String getPrice() {
return price;
}
/**
* @param price
* The price to set.
*/
public void setPrice(String price) {
this.price = price;
}
/**
* @return Returns the priOfBuy.
*/
public String getPriOfBuy() {
return priOfBuy;
}
/**
* @param priOfBuy
* The priOfBuy to set.
*/
public void setPriOfBuy(String priOfBuy) {
this.priOfBuy = priOfBuy;
}
/**
* @return Returns the priStpDwn.
*/
public String getPriStpDwn() {
return priStpDwn;
}
/**
* @param priStpDwn
* The priStpDwn to set.
*/
public void setPriStpDwn(String priStpDwn) {
this.priStpDwn = priStpDwn;
}
/**
* @return Returns the priStpUp.
*/
public String getPriStpUp() {
return priStpUp;
}
/**
* @param priStpUp
* The priStpUp to set.
*/
public void setPriStpUp(String priStpUp) {
this.priStpUp = priStpUp;
}
/**
* @return Returns the reason.
*/
public String getReason() {
return reason;
}
/**
* @param reason
* The reason to set.
*/
public void setReason(String reason) {
this.reason = reason;
}
/**
* @return Returns the typSelBuy.
*/
public String getTypSelBuy() {
return typSelBuy;
}
/**
* @param typSelBuy
* The typSelBuy to set.
*/
public void setTypSelBuy(String typSelBuy) {
this.typSelBuy = typSelBuy;
}
/**
* @return Returns the userName.
*/
public String getUserName() {
return userName;
}
/**
* @param userName
* The userName to set.
*/
public void setUserName(String userName) {
this.userName = userName;
}
/**
* @return Returns the stkID.
*/
public String getStkID() {
return stkID;
}
/**
* @param stkID
* The stkID to set.
*/
public void setStkID(String stkID) {
this.stkID = stkID;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -