📄 log.java
字号:
package jp.com.cost.pojo;
/**
* Log generated by MyEclipse Persistence Tools
*/
public class Log implements java.io.Serializable {
// Fields
/**
* 序列化ID 68980437351814158L
*/
private static final long serialVersionUID = 68980437351814158L;
private Integer oid;
private Integer wtid;
private String consigner;
private String shipco;
private Double quantity;
private Double accountmoney;
private Double dealmoney;
private Double gain;
private String operater;
private String updatetime;
private String delstate;
// Constructors
/** default constructor */
public Log() {
}
/** minimal constructor */
public Log(Integer oid) {
this.oid = oid;
}
/** full constructor */
public Log(Integer oid, Integer wtid, String consigner, String shipco,
Double quantity, Double accountmoney, Double dealmoney,
Double gain, String operater, String updatetime, String delstate) {
this.oid = oid;
this.wtid = wtid;
this.consigner = consigner;
this.shipco = shipco;
this.quantity = quantity;
this.accountmoney = accountmoney;
this.dealmoney = dealmoney;
this.gain = gain;
this.operater = operater;
this.updatetime = updatetime;
this.delstate = delstate;
}
// Property accessors
public Integer getOid() {
return this.oid;
}
public void setOid(Integer oid) {
this.oid = oid;
}
public Integer getWtid() {
return this.wtid;
}
public void setWtid(Integer wtid) {
this.wtid = wtid;
}
public String getConsigner() {
return this.consigner;
}
public void setConsigner(String consigner) {
this.consigner = consigner;
}
public String getShipco() {
return this.shipco;
}
public void setShipco(String shipco) {
this.shipco = shipco;
}
public Double getQuantity() {
return this.quantity;
}
public void setQuantity(Double quantity) {
this.quantity = quantity;
}
public Double getAccountmoney() {
return this.accountmoney;
}
public void setAccountmoney(Double accountmoney) {
this.accountmoney = accountmoney;
}
public Double getDealmoney() {
return this.dealmoney;
}
public void setDealmoney(Double dealmoney) {
this.dealmoney = dealmoney;
}
public Double getGain() {
return this.gain;
}
public void setGain(Double gain) {
this.gain = gain;
}
public String getOperater() {
return this.operater;
}
public void setOperater(String operater) {
this.operater = operater;
}
public String getUpdatetime() {
return this.updatetime;
}
public void setUpdatetime(String updatetime) {
this.updatetime = updatetime;
}
public String getDelstate() {
return this.delstate;
}
public void setDelstate(String delstate) {
this.delstate = delstate;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -