depotinfo.java
来自「一套自己原先在学校作的CRM,大家指点下」· Java 代码 · 共 103 行
JAVA
103 行
package com.crm.pojo;
/**
* DepotInfo generated by MyEclipse Persistence Tools
*/
public class DepotInfo implements java.io.Serializable {
// Fields
/**
*
*/
private static final long serialVersionUID = -6167546085796020262L;
private Integer depotId;
private ProductInfo productInfo=new ProductInfo();
private String depotAddress;
private String depotBooth;
private Integer depotPiece;
private String depotRemark;
// Constructors
/** default constructor */
public DepotInfo() {
}
/** minimal constructor */
public DepotInfo(ProductInfo productInfo, String depotAddress,
String depotBooth, Integer depotPiece) {
this.productInfo = productInfo;
this.depotAddress = depotAddress;
this.depotBooth = depotBooth;
this.depotPiece = depotPiece;
}
/** full constructor */
public DepotInfo(ProductInfo productInfo, String depotAddress,
String depotBooth, Integer depotPiece, String depotRemark) {
this.productInfo = productInfo;
this.depotAddress = depotAddress;
this.depotBooth = depotBooth;
this.depotPiece = depotPiece;
this.depotRemark = depotRemark;
}
// Property accessors
public Integer getDepotId() {
return this.depotId;
}
public void setDepotId(Integer depotId) {
this.depotId = depotId;
}
public ProductInfo getProductInfo() {
return this.productInfo;
}
public void setProductInfo(ProductInfo productInfo) {
this.productInfo = productInfo;
}
public String getDepotAddress() {
return this.depotAddress;
}
public void setDepotAddress(String depotAddress) {
this.depotAddress = depotAddress;
}
public String getDepotBooth() {
return this.depotBooth;
}
public void setDepotBooth(String depotBooth) {
this.depotBooth = depotBooth;
}
public Integer getDepotPiece() {
return this.depotPiece;
}
public void setDepotPiece(Integer depotPiece) {
this.depotPiece = depotPiece;
}
public String getDepotRemark() {
return this.depotRemark;
}
public void setDepotRemark(String depotRemark) {
this.depotRemark = depotRemark;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?