📄 xsinvoiceconsign.java
字号:
package com.company.struts.form;
/**
* XsInvoiceConsign generated by MyEclipse Persistence Tools
*/
public class XsInvoiceConsign extends org.apache.struts.action.ActionForm
implements java.io.Serializable {
// Fields
private Integer invoiceConsignId;
private Integer invoiceBillMainId;
private String invoiceCode;
private Integer consignBillMainId;
private String consignCode;
private String wareCode;
private long quantity;
// Constructors
/** default constructor */
public XsInvoiceConsign() {
}
/** full constructor */
public XsInvoiceConsign(Integer invoiceBillMainId, String invoiceCode,
Integer consignBillMainId, String consignCode, String wareCode,
long quantity) {
this.invoiceBillMainId = invoiceBillMainId;
this.invoiceCode = invoiceCode;
this.consignBillMainId = consignBillMainId;
this.consignCode = consignCode;
this.wareCode = wareCode;
this.quantity = quantity;
}
// Property accessors
public Integer getInvoiceConsignId() {
return this.invoiceConsignId;
}
public void setInvoiceConsignId(Integer invoiceConsignId) {
this.invoiceConsignId = invoiceConsignId;
}
public Integer getInvoiceBillMainId() {
return this.invoiceBillMainId;
}
public void setInvoiceBillMainId(Integer invoiceBillMainId) {
this.invoiceBillMainId = invoiceBillMainId;
}
public String getInvoiceCode() {
return this.invoiceCode;
}
public void setInvoiceCode(String invoiceCode) {
this.invoiceCode = invoiceCode;
}
public Integer getConsignBillMainId() {
return this.consignBillMainId;
}
public void setConsignBillMainId(Integer consignBillMainId) {
this.consignBillMainId = consignBillMainId;
}
public String getConsignCode() {
return this.consignCode;
}
public void setConsignCode(String consignCode) {
this.consignCode = consignCode;
}
public String getWareCode() {
return this.wareCode;
}
public void setWareCode(String wareCode) {
this.wareCode = wareCode;
}
public long getQuantity() {
return this.quantity;
}
public void setQuantity(long quantity) {
this.quantity = quantity;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -