📄 sw4101viewentity1list.java
字号:
package jp.com.cost.sw.entity;
public class SW4101ViewEntity1List {
private Integer id = 0;
private String sendPeron = null; // 发货人
private String shipCName = null; // 船名
private double weight = 0; // 毛重 货运量
private double payRate = 0.00F; // 应收
private double dealCost = 0.00F; // 应付
private double gain = 0.00F; // 利润
/**
* @return the id
*/
public Integer getId() {
return id;
}
/**
* @param id the id to set
*/
public void setId(Integer id) {
this.id = id;
}
/**
* @return the sendPeron
*/
public String getSendPeron() {
return sendPeron;
}
/**
* @param sendPeron the sendPeron to set
*/
public void setSendPeron(String sendPeron) {
this.sendPeron = sendPeron;
}
/**
* @return the shipCName
*/
public String getShipCName() {
return shipCName;
}
/**
* @param shipCName the shipCName to set
*/
public void setShipCName(String shipCName) {
this.shipCName = shipCName;
}
/**
* @return the weight
*/
public double getWeight() {
return weight;
}
/**
* @param weight the weight to set
*/
public void setWeight(double weight) {
this.weight = weight;
}
/**
* @return the payRate
*/
public double getPayRate() {
return payRate;
}
/**
* @param payRate the payRate to set
*/
public void setPayRate(double payRate) {
this.payRate = payRate;
}
/**
* @return the dealCost
*/
public double getDealCost() {
return dealCost;
}
/**
* @param dealCost the dealCost to set
*/
public void setDealCost(double dealCost) {
this.dealCost = dealCost;
}
/**
* @return the gain
*/
public double getGain() {
return gain;
}
/**
* @param gain the gain to set
*/
public void setGain(double gain) {
this.gain = gain;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -