| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- package com.goafanti.expenseAccount.bo;
- import java.math.BigDecimal;
- public class OutExpenseAccountBo {
- private Integer id;
- private BigDecimal totalAmount;
- private Integer type;
- private Integer processStatus;
- private String examineName;
- private String createTimeStr;
- private String aname;
- private String appDepName;
- private String payDepName;
- private Integer status;
- private Integer targetType;
- private String contractNo;
- private String buyerName;
- private String depName;
- private String financeName;
- public Integer getTargetType() {
- return targetType;
- }
- public void setTargetType(Integer targetType) {
- this.targetType = targetType;
- }
- public String getContractNo() {
- return contractNo;
- }
- public void setContractNo(String contractNo) {
- this.contractNo = contractNo;
- }
- public String getBuyerName() {
- return buyerName;
- }
- public void setBuyerName(String buyerName) {
- this.buyerName = buyerName;
- }
- public String getDepName() {
- return depName;
- }
- public void setDepName(String depName) {
- this.depName = depName;
- }
- public String getFinanceName() {
- return financeName;
- }
- public void setFinanceName(String financeName) {
- this.financeName = financeName;
- }
- public String getAname() {
- return aname;
- }
- public void setAname(String aname) {
- this.aname = aname;
- }
- public String getAppDepName() {
- return appDepName;
- }
- public void setAppDepName(String appDepName) {
- this.appDepName = appDepName;
- }
- public String getPayDepName() {
- return payDepName;
- }
- public void setPayDepName(String payDepName) {
- this.payDepName = payDepName;
- }
- public String getExamineName() {
- return examineName;
- }
- public void setExamineName(String examineName) {
- this.examineName = examineName;
- }
- public Integer getStatus() {
- return status;
- }
- public void setStatus(Integer status) {
- this.status = status;
- }
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public BigDecimal getTotalAmount() {
- return totalAmount;
- }
- public void setTotalAmount(BigDecimal totalAmount) {
- this.totalAmount = totalAmount;
- }
- public Integer getType() {
- return type;
- }
- public void setType(Integer type) {
- this.type = type;
- }
- public Integer getProcessStatus() {
- return processStatus;
- }
- public void setProcessStatus(Integer processStatus) {
- this.processStatus = processStatus;
- }
- public String getCreateTimeStr() {
- return createTimeStr;
- }
- public void setCreateTimeStr(String createTimeStr) {
- this.createTimeStr = createTimeStr;
- }
- }
|