1 Commits

Author SHA1 Message Date
hugh 94d587705c formating 2026-04-14 21:26:50 +01:00
@@ -24,124 +24,120 @@ import com.unicenta.data.loader.DataRead;
import com.unicenta.data.loader.IKeyed;
import com.unicenta.data.loader.SerializerRead;
public class VoucherInfo implements IKeyed {
private String id;
private String voucherNumber;
private String customerName;
private double amount;
private String status;
private String id;
private String voucherNumber;
private String customerName;
private double amount;
private String status;
public VoucherInfo() {
}
public VoucherInfo() {
}
public VoucherInfo(
String id,
String voucherNumber,
String customerName,
double amount,
String status)
{
this.id = id;
this.voucherNumber = voucherNumber;
this.customerName = customerName;
this.amount = amount;
this.status = status;
}
public VoucherInfo(
String id,
String voucherNumber,
String customerName,
double amount,
String status) {
this.id = id;
this.voucherNumber = voucherNumber;
this.customerName = customerName;
this.amount = amount;
this.status = status;
}
@Override
public Object getKey() {
return getId();
}
@Override
public Object getKey() {
return getId();
}
/**
* @return the id
*/
public String getId() {
return id;
}
/**
* @return the id
*/
public String getId() {
return id;
}
/**
* @param id the id to set
*/
public void setId(String id) {
this.id = id;
}
/**
* @param id the id to set
*/
public void setId(String id) {
this.id = id;
}
/**
* @return the voucherNumber
*/
public String getVoucherNumber() {
return voucherNumber;
}
/**
* @return the voucherNumber
*/
public String getVoucherNumber() {
return voucherNumber;
}
/**
* @param voucherNumber the voucherNumber to set
*/
public void setVoucherNumber(String voucherNumber) {
this.voucherNumber = voucherNumber;
}
/**
* @param voucherNumber the voucherNumber to set
*/
public void setVoucherNumber(String voucherNumber) {
this.voucherNumber = voucherNumber;
}
/**
* @return the customerName
*/
public String getCustomerName() {
return customerName;
}
/**
* @return the customerName
*/
public String getCustomerName() {
return customerName;
}
/**
* @param customerName the customerName to set
*/
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
/**
* @param customerName the customerName to set
*/
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
/**
* @return the amount
*/
public double getAmount() {
return amount;
}
/**
* @return the amount
*/
public double getAmount() {
return amount;
}
/**
* @param amount the amount to set
*/
public void setAmount(double amount) {
this.amount = amount;
}
/**
* @param amount the amount to set
*/
public void setAmount(double amount) {
this.amount = amount;
}
@Override
public String toString() {
return voucherNumber;
}
/**
* @return the status
*/
public String getStatus() {
return status;
}
@Override
public String toString() {
return voucherNumber;
}
/**
* @param status the status to set
*/
public void setStatus(String status) {
this.status = status;
}
/**
* @return the status
*/
public String getStatus() {
return status;
}
/**
* @param status the status to set
*/
public void setStatus(String status) {
this.status = status;
}
public static SerializerRead getSerializerRead() {
return new SerializerRead()
{
@Override
public Object readValues(DataRead dr) throws BasicException {
return new VoucherInfo(
dr.getString(1),
dr.getString(2),
dr.getString(3),
dr.getDouble(4),
dr.getString(5));
}};
}
public static SerializerRead getSerializerRead() {
return new SerializerRead() {
@Override
public Object readValues(DataRead dr) throws BasicException {
return new VoucherInfo(
dr.getString(1),
dr.getString(2),
dr.getString(3),
dr.getDouble(4),
dr.getString(5));
}
};
}
}