📄 selectnbrbean.java
字号:
package com.doone.fj1w.fjmgr.order.Bss_infoEntity;
import com.doone.data.DataTable;
import com.doone.iossp.FormBody;
/**
* <strong> 选号 </strong>
*
* @author forest
*
*/
public class SelectNbrBean {
String SERV_NBRiSERV_NBR_NAME = "";// 业务号
String SERV_NBRiNBR_CLASS = "";// 号码等级
String SERV_NBRiSERV_PRICE = "";// 业务号金额
String SERV_NBRiSERV_NBR_ID = "";// 业务号编码
public String getSERV_NBRiNBR_CLASS() {
return SERV_NBRiNBR_CLASS;
}
public void setSERV_NBRiNBR_CLASS(String riNBR_CLASS) {
SERV_NBRiNBR_CLASS = riNBR_CLASS;
}
public String getSERV_NBRiSERV_NBR_ID() {
return SERV_NBRiSERV_NBR_ID;
}
public void setSERV_NBRiSERV_NBR_ID(String riSERV_NBR_ID) {
SERV_NBRiSERV_NBR_ID = riSERV_NBR_ID;
}
public String getSERV_NBRiSERV_NBR_NAME() {
return SERV_NBRiSERV_NBR_NAME;
}
public void setSERV_NBRiSERV_NBR_NAME(String riSERV_NBR_NAME) {
SERV_NBRiSERV_NBR_NAME = riSERV_NBR_NAME;
}
public String getSERV_NBRiSERV_PRICE() {
return SERV_NBRiSERV_PRICE;
}
public void setSERV_NBRiSERV_PRICE(String riSERV_PRICE) {
SERV_NBRiSERV_PRICE = riSERV_PRICE;
}
public FormBody toFormBody()throws RuntimeException{
FormBody _fb = new FormBody();
_fb.append("SERV_NBRiSERV_NBR_NAME",this.getSERV_NBRiSERV_NBR_NAME());
_fb.append("SERV_NBRiNBR_CLASS",this.getSERV_NBRiNBR_CLASS());
_fb.append("SERV_NBRiSERV_PRICE",this.getSERV_NBRiSERV_PRICE());
_fb.append("SERV_NBRiSERV_NBR_ID",this.getSERV_NBRiSERV_NBR_ID());
return _fb;
}
public void parseFormBody(FormBody _fb)throws RuntimeException{
this.setSERV_NBRiSERV_NBR_NAME(_fb.getString("SERV_NBRiSERV_NBR_NAME"));
this.setSERV_NBRiNBR_CLASS(_fb.getString("SERV_NBRiNBR_CLASS"));
this.setSERV_NBRiSERV_PRICE(_fb.getString("SERV_NBRiSERV_PRICE"));
this.setSERV_NBRiSERV_NBR_ID(_fb.getString("SERV_NBRiSERV_NBR_ID"));
}
public void parseDataTable(DataTable _fb)throws RuntimeException{
if(_fb == null)throw new NullPointerException("DataTable对象为空");
this.setSERV_NBRiSERV_NBR_NAME(_fb.getRow(0).getString("SERV_NBRiSERV_NBR_NAME"));
this.setSERV_NBRiNBR_CLASS(_fb.getRow(0).getString("SERV_NBRiNBR_CLASS"));
this.setSERV_NBRiSERV_PRICE(_fb.getRow(0).getString("SERV_NBRiSERV_PRICE"));
this.setSERV_NBRiSERV_NBR_ID(_fb.getRow(0).getString("SERV_NBRiSERV_NBR_ID"));
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -