mirror of
https://github.com/dyiop/astute.git
synced 2025-04-05 21:10:16 -04:00
Delete InvoiceDetail.java
This commit is contained in:
parent
b42cee477e
commit
90899bf542
|
@ -1,77 +0,0 @@
|
|||
package com.astute.model;
|
||||
|
||||
public class InvoiceDetail {
|
||||
String invoiceNum;
|
||||
int lineItemNum;
|
||||
int poLineItemNum;
|
||||
int serviceTypeId;
|
||||
String desc;
|
||||
double qty;
|
||||
double fee;
|
||||
|
||||
public InvoiceDetail(String invoiceNum, int lineItemNum, int poLineItemNum, int serviceTypeId, String desc, double qty, double fee) {
|
||||
this.invoiceNum = invoiceNum;
|
||||
this.lineItemNum = lineItemNum;
|
||||
this.poLineItemNum = poLineItemNum;
|
||||
this.serviceTypeId = serviceTypeId;
|
||||
this.desc = desc;
|
||||
this.qty = qty;
|
||||
this.fee = fee;
|
||||
}
|
||||
|
||||
public String getInvoiceNum() {
|
||||
return invoiceNum;
|
||||
}
|
||||
|
||||
public void setInvoiceNum(String invoiceNum) {
|
||||
this.invoiceNum = invoiceNum;
|
||||
}
|
||||
|
||||
public int getLineItemNum() {
|
||||
return lineItemNum;
|
||||
}
|
||||
|
||||
public void setLineItemNum(int lineItemNum) {
|
||||
this.lineItemNum = lineItemNum;
|
||||
}
|
||||
|
||||
public int getPoLineItemNum() {
|
||||
return poLineItemNum;
|
||||
}
|
||||
|
||||
public void setPoLineItemNum(int poLineItemNum) {
|
||||
this.poLineItemNum = poLineItemNum;
|
||||
}
|
||||
|
||||
public int getServiceTypeId() {
|
||||
return serviceTypeId;
|
||||
}
|
||||
|
||||
public void setServiceTypeId(int serviceTypeId) {
|
||||
this.serviceTypeId = serviceTypeId;
|
||||
}
|
||||
|
||||
public String getDesc() {
|
||||
return desc;
|
||||
}
|
||||
|
||||
public void setDesc(String desc) {
|
||||
this.desc = desc;
|
||||
}
|
||||
|
||||
public double getQty() {
|
||||
return qty;
|
||||
}
|
||||
|
||||
public void setQty(double qty) {
|
||||
this.qty = qty;
|
||||
}
|
||||
|
||||
public double getFee() {
|
||||
return fee;
|
||||
}
|
||||
|
||||
public void setFee(double fee) {
|
||||
this.fee = fee;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user