|
|
@@ -3,22 +3,31 @@ package com.usoftchina.saas.money.po;
|
|
|
import java.util.Date;
|
|
|
|
|
|
public class AccountDetailsView {
|
|
|
- private String SL_CODE;
|
|
|
+ private String sl_code;
|
|
|
|
|
|
- private String SL_KIND;
|
|
|
+ private String sl_kind;
|
|
|
|
|
|
- private String VE_NAME;
|
|
|
+ private String ve_name;
|
|
|
|
|
|
- private Double SL_AMOUNT;
|
|
|
+ private Double sl_amount;
|
|
|
|
|
|
- private Integer PB_ID;
|
|
|
+ private Integer pb_id;
|
|
|
|
|
|
- private String PB_KIND;
|
|
|
+ private String pb_kind;
|
|
|
|
|
|
- private String PB_CODE;
|
|
|
+ private String pb_code;
|
|
|
|
|
|
private Double total;
|
|
|
private Date date;
|
|
|
+ private Long companyId;
|
|
|
+
|
|
|
+ public Long getCompanyId() {
|
|
|
+ return companyId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCompanyId(Long companyId) {
|
|
|
+ this.companyId = companyId;
|
|
|
+ }
|
|
|
|
|
|
public Date getDate() {
|
|
|
return date;
|
|
|
@@ -28,60 +37,60 @@ public class AccountDetailsView {
|
|
|
this.date = date;
|
|
|
}
|
|
|
|
|
|
- public String getSL_CODE() {
|
|
|
- return SL_CODE;
|
|
|
+ public String getSl_code() {
|
|
|
+ return sl_code;
|
|
|
}
|
|
|
|
|
|
- public void setSL_CODE(String SL_CODE) {
|
|
|
- this.SL_CODE = SL_CODE == null ? null : SL_CODE.trim();
|
|
|
+ public void setSl_code(String sl_code) {
|
|
|
+ this.sl_code = sl_code;
|
|
|
}
|
|
|
|
|
|
- public String getSL_KIND() {
|
|
|
- return SL_KIND;
|
|
|
+ public String getSl_kind() {
|
|
|
+ return sl_kind;
|
|
|
}
|
|
|
|
|
|
- public void setSL_KIND(String SL_KIND) {
|
|
|
- this.SL_KIND = SL_KIND == null ? null : SL_KIND.trim();
|
|
|
+ public void setSl_kind(String sl_kind) {
|
|
|
+ this.sl_kind = sl_kind;
|
|
|
}
|
|
|
|
|
|
- public String getVE_NAME() {
|
|
|
- return VE_NAME;
|
|
|
+ public String getVe_name() {
|
|
|
+ return ve_name;
|
|
|
}
|
|
|
|
|
|
- public void setVE_NAME(String VE_NAME) {
|
|
|
- this.VE_NAME = VE_NAME == null ? null : VE_NAME.trim();
|
|
|
+ public void setVe_name(String ve_name) {
|
|
|
+ this.ve_name = ve_name;
|
|
|
}
|
|
|
|
|
|
- public Double getSL_AMOUNT() {
|
|
|
- return SL_AMOUNT;
|
|
|
+ public Double getSl_amount() {
|
|
|
+ return sl_amount;
|
|
|
}
|
|
|
|
|
|
- public void setSL_AMOUNT(Double SL_AMOUNT) {
|
|
|
- this.SL_AMOUNT = SL_AMOUNT;
|
|
|
+ public void setSl_amount(Double sl_amount) {
|
|
|
+ this.sl_amount = sl_amount;
|
|
|
}
|
|
|
|
|
|
- public Integer getPB_ID() {
|
|
|
- return PB_ID;
|
|
|
+ public Integer getPb_id() {
|
|
|
+ return pb_id;
|
|
|
}
|
|
|
|
|
|
- public void setPB_ID(Integer PB_ID) {
|
|
|
- this.PB_ID = PB_ID;
|
|
|
+ public void setPb_id(Integer pb_id) {
|
|
|
+ this.pb_id = pb_id;
|
|
|
}
|
|
|
|
|
|
- public String getPB_KIND() {
|
|
|
- return PB_KIND;
|
|
|
+ public String getPb_kind() {
|
|
|
+ return pb_kind;
|
|
|
}
|
|
|
|
|
|
- public void setPB_KIND(String PB_KIND) {
|
|
|
- this.PB_KIND = PB_KIND == null ? null : PB_KIND.trim();
|
|
|
+ public void setPb_kind(String pb_kind) {
|
|
|
+ this.pb_kind = pb_kind;
|
|
|
}
|
|
|
|
|
|
- public String getPB_CODE() {
|
|
|
- return PB_CODE;
|
|
|
+ public String getPb_code() {
|
|
|
+ return pb_code;
|
|
|
}
|
|
|
|
|
|
- public void setPB_CODE(String PB_CODE) {
|
|
|
- this.PB_CODE = PB_CODE == null ? null : PB_CODE.trim();
|
|
|
+ public void setPb_code(String pb_code) {
|
|
|
+ this.pb_code = pb_code;
|
|
|
}
|
|
|
|
|
|
public Double getTotal() {
|