| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 |
- package com.goafanti.expenseAccount.bo;
- import java.math.BigDecimal;
- public class OutExpenseAccountBo {
- private Integer id;
- private BigDecimal totalAmount;
- private BigDecimal amount;
- private Integer type;
- private String typeOther;
- private Integer secondaryType;
- private String secondaryTypeOther;
- private Integer processStatus;
- private Integer eaeType;
- private String examineName;
- private String createTimeStr;
- private String aname;
- private String applyDepName;
- private String payDepName;
- private Integer status;
- private Integer targetType;
- private String releaseStartStr;
- private String releaseEndStr;
- private Integer mainId;
- private String contractNo;
- private String checkNo;
- private String userNames;
- private String buyerName;
- private String depName;
- private String financeName;
- private String attachmentUrl;
- private Integer examine;
- private BigDecimal realAmount;
- public BigDecimal getAmount() {
- return amount;
- }
- public void setAmount(BigDecimal amount) {
- this.amount = amount;
- }
- public Integer getMainId() {
- return mainId;
- }
- public void setMainId(Integer mainId) {
- this.mainId = mainId;
- }
- public String getBuyerName() {
- return buyerName;
- }
- public void setBuyerName(String buyerName) {
- this.buyerName = buyerName;
- }
- public BigDecimal getRealAmount() {
- return realAmount;
- }
- public void setRealAmount(BigDecimal realAmount) {
- this.realAmount = realAmount;
- }
- public String getReleaseStartStr() {
- return releaseStartStr;
- }
- public void setReleaseStartStr(String releaseStartStr) {
- this.releaseStartStr = releaseStartStr;
- }
- public String getReleaseEndStr() {
- return releaseEndStr;
- }
- public void setReleaseEndStr(String releaseEndStr) {
- this.releaseEndStr = releaseEndStr;
- }
- public Integer getSecondaryType() {
- return secondaryType;
- }
- public void setSecondaryType(Integer secondaryType) {
- this.secondaryType = secondaryType;
- }
- public String getSecondaryTypeOther() {
- return secondaryTypeOther;
- }
- public void setSecondaryTypeOther(String secondaryTypeOther) {
- this.secondaryTypeOther = secondaryTypeOther;
- }
- public String getCheckNo() {
- return checkNo;
- }
- public void setCheckNo(String checkNo) {
- this.checkNo = checkNo;
- }
- public Integer getExamine() {
- return examine;
- }
- public void setExamine(Integer examine) {
- this.examine = examine;
- }
- public String getTypeOther() {
- return typeOther;
- }
- public void setTypeOther(String typeOther) {
- this.typeOther = typeOther;
- }
- public String getAttachmentUrl() {
- return attachmentUrl;
- }
- public void setAttachmentUrl(String attachmentUrl) {
- this.attachmentUrl = attachmentUrl;
- }
- public Integer getEaeType() {
- return eaeType;
- }
- public void setEaeType(Integer eaeType) {
- this.eaeType = eaeType;
- }
- 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 getUserNames() {
- return userNames;
- }
- public void setUserNames(String userNames) {
- this.userNames = userNames;
- }
- 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 getApplyDepName() {
- return applyDepName;
- }
- public void setApplyDepName(String applyDepName) {
- this.applyDepName = applyDepName;
- }
- 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;
- }
- }
|