?? sw4102viewentity1list.java
字號:
package jp.com.cost.sw.entity;
/**
*
* @說明 由于涉及到對2個表(BOOK&LOG)的操作 為了清晰的作業 添加了比較多的注釋
* @PS: [顯] 用來表示頁面顯示的數據來自什么表,[存] 就代表了這個數據而后會存到什么表
* @author Angie.K
* @version 1.0
*/
public class SW4102ViewEntity1List {
private Integer id; //Book表業務id [顯] 對應數據表BOOK.id [存] 對應數據庫表 LOG.wtid
private String sendPeron; // 發貨人 [顯] 對應數據表BOOK.sendperon [存] 對應數據庫表 LOG.consigner
private String shipCName; // 船代公司 [顯] 對應數據表BOOK.shipCName [存] 對應數據庫表 LOG.shipCo
private Double weight; // 貨運量 [顯] 對應數據表BOOK.weight [存] 對應數據庫表 LOG.quantity
private Double dealCost; // 應收費用 [顯] 對應數據表BOOK.dealCost [存] 對應數據庫表 LOG.accountmoney
private Double payRate; // 應付費用 [顯] 對應數據表BOOK.payRate [存] 對應數據庫表 LOG.dealMoney
private Double gain; // 利潤 [顯] BOOK.dealCost - BOOK.payRate [存] 對應數據庫表 LOG.gain
private String state; // 稽核結果 [顯] N/A [存] 對應數據庫表 LOG.state
private String remark; // 備注 [顯] N/A [存] 對應數據庫表 LOG.remark
private String operater; // 操作人 [顯] 來自Session [存] 對應數據庫表 LOG.operater
private String updateTime; // 操作人 [顯] 來自系統 [存] 對應數據庫表 LOG.updateTime
/**
* @return the id
*/
public Integer PayRate() {
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 dealCost
*/
public Double getDealCost() {
return dealCost;
}
/**
* @param dealCost the dealCost to set
*/
public void setDealCost(Double dealCost) {
this.dealCost = dealCost;
}
/**
* @return the payRate
*/
public Double getPayRate() {
return payRate;
}
/**
* @param payRate the payRate to set
*/
public void setPayRate(Double payRate) {
this.payRate = payRate;
}
/**
* @return the gain
*/
public Double getGain() {
return gain;
}
/**
* @param gain the gain to set
*/
public void setGain(Double gain) {
this.gain = gain;
}
/**
* @return the state
*/
public String getState() {
return state;
}
/**
* @param state the state to set
*/
public void setState(String state) {
this.state = state;
}
/**
* @return the remark
*/
public String getRemark() {
return remark;
}
/**
* @param remark the remark to set
*/
public void setRemark(String remark) {
this.remark = remark;
}
/**
* @return the operater
*/
public String getOperater() {
return operater;
}
/**
* @param operater the operater to set
*/
public void setOperater(String operater) {
this.operater = operater;
}
/**
* @return the updateTime
*/
public String getUpdateTime() {
return updateTime;
}
/**
* @param updateTime the updateTime to set
*/
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
/**
* @return the id
*/
public Integer getId() {
return id;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -