📄 sw5101viewentity1.java
字号:
package jp.com.cost.tj.entity;
import java.text.DecimalFormat;
/**
* 该实体是SW5101页面显示列表中的一条记录的实体,用来封装查询出的数据
* @author 庞显峰
* @version 1.0
*/
public class SW5101ViewEntity1 {
private Integer oid;
private String consigner;
private double quantity;
private double accountmoney;
private double dealmoney;
private double gain;
private String updatetime;
/**
* @return the oid
*/
public Integer getOid() {
return oid;
}
/**
* @param oid the oid to set
*/
public void setOid(Integer oid) {
this.oid = oid;
}
/**
* @return the consigner
*/
public String getConsigner() {
return consigner;
}
/**
* @param consigner the consigner to set
*/
public void setConsigner(String consigner) {
this.consigner = consigner;
}
/**
* @return the quantity
*/
public double getQuantity() {
return quantity;
}
/**
* @param quantity the quantity to set
*/
public void setQuantity(double quantity) {
this.quantity = quantity;
}
/**
* @return the accountmoney
*/
public double getAccountmoney() {
return accountmoney;
}
/**
* @param accountmoney the accountmoney to set
*/
public void setAccountmoney(double accountmoney) {
this.accountmoney = accountmoney;
}
/**
* @return the dealmoney
*/
public double getDealmoney() {
return dealmoney;
}
/**
* @param dealmoney the dealmoney to set
*/
public void setDealmoney(double dealmoney) {
this.dealmoney = dealmoney;
}
/**
* @return the gain
*/
public double getGain() {
return gain;
}
/**
* @param gain the gain to set
*/
public void setGain(double gain) {
this.gain = gain;
}
/**
* @return the updatetime
*/
public String getUpdatetime() {
return updatetime;
}
/**
* @param updatetime the updatetime to set
*/
public void setUpdatetime(String updatetime) {
this.updatetime = updatetime;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -