mirror of
https://github.com/dyiop/astute.git
synced 2025-04-05 21:10:16 -04:00
Add files via upload
This commit is contained in:
parent
7cd93c8e4e
commit
08b6c9909b
|
@ -0,0 +1,27 @@
|
|||
package com.astute.model;
|
||||
|
||||
public class PaymentStatus {
|
||||
int paymentStatusId;
|
||||
String desc;
|
||||
|
||||
public PaymentStatus(int paymentStatusId, String desc) {
|
||||
this.paymentStatusId = paymentStatusId;
|
||||
this.desc = desc;
|
||||
}
|
||||
|
||||
public int getPaymentStatusId() {
|
||||
return paymentStatusId;
|
||||
}
|
||||
|
||||
public void setPaymentStatusId(int paymentStatusId) {
|
||||
this.paymentStatusId = paymentStatusId;
|
||||
}
|
||||
|
||||
public String getDesc() {
|
||||
return desc;
|
||||
}
|
||||
|
||||
public void setDesc(String desc) {
|
||||
this.desc = desc;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user