123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- package com.idea.oa.apply.model;
- import java.io.Serializable;
- import java.math.BigDecimal;
- import java.util.Date;
- public class ApplyPaymentSettle implements Serializable {
- private String id;
- private String flowNum;
- private String title;
- private Integer isNoContract;
- private String payerName;
- private String payeeName;
- private String moneyPurpose;
- private BigDecimal contractPrice;
- private String payRemark;
- private BigDecimal havePayMoney;
- private BigDecimal applyPayMoney;
- private String applyPayMoneyUppercase;
- private String fileDataIds;
- private Integer status;
- private String createdByDept;
- private String createdBy;
- private Date createdAt;
- private String updatedBy;
- private Date updatedAt;
- private String remark;
- private static final long serialVersionUID = 1L;
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id == null ? null : id.trim();
- }
- public String getFlowNum() {
- return flowNum;
- }
- public void setFlowNum(String flowNum) {
- this.flowNum = flowNum == null ? null : flowNum.trim();
- }
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title == null ? null : title.trim();
- }
- public Integer getIsNoContract() {
- return isNoContract;
- }
- public void setIsNoContract(Integer isNoContract) {
- this.isNoContract = isNoContract;
- }
- public String getPayerName() {
- return payerName;
- }
- public void setPayerName(String payerName) {
- this.payerName = payerName == null ? null : payerName.trim();
- }
- public String getPayeeName() {
- return payeeName;
- }
- public void setPayeeName(String payeeName) {
- this.payeeName = payeeName == null ? null : payeeName.trim();
- }
- public String getMoneyPurpose() {
- return moneyPurpose;
- }
- public void setMoneyPurpose(String moneyPurpose) {
- this.moneyPurpose = moneyPurpose == null ? null : moneyPurpose.trim();
- }
- public BigDecimal getContractPrice() {
- return contractPrice;
- }
- public void setContractPrice(BigDecimal contractPrice) {
- this.contractPrice = contractPrice;
- }
- public String getPayRemark() {
- return payRemark;
- }
- public void setPayRemark(String payRemark) {
- this.payRemark = payRemark == null ? null : payRemark.trim();
- }
- public BigDecimal getHavePayMoney() {
- return havePayMoney;
- }
- public void setHavePayMoney(BigDecimal havePayMoney) {
- this.havePayMoney = havePayMoney;
- }
- public BigDecimal getApplyPayMoney() {
- return applyPayMoney;
- }
- public void setApplyPayMoney(BigDecimal applyPayMoney) {
- this.applyPayMoney = applyPayMoney;
- }
- public String getApplyPayMoneyUppercase() {
- return applyPayMoneyUppercase;
- }
- public void setApplyPayMoneyUppercase(String applyPayMoneyUppercase) {
- this.applyPayMoneyUppercase = applyPayMoneyUppercase == null ? null : applyPayMoneyUppercase.trim();
- }
- public String getFileDataIds() {
- return fileDataIds;
- }
- public void setFileDataIds(String fileDataIds) {
- this.fileDataIds = fileDataIds == null ? null : fileDataIds.trim();
- }
- public Integer getStatus() {
- return status;
- }
- public void setStatus(Integer status) {
- this.status = status;
- }
- public String getCreatedByDept() {
- return createdByDept;
- }
- public void setCreatedByDept(String createdByDept) {
- this.createdByDept = createdByDept == null ? null : createdByDept.trim();
- }
- public String getCreatedBy() {
- return createdBy;
- }
- public void setCreatedBy(String createdBy) {
- this.createdBy = createdBy == null ? null : createdBy.trim();
- }
- public Date getCreatedAt() {
- return createdAt;
- }
- public void setCreatedAt(Date createdAt) {
- this.createdAt = createdAt;
- }
- public String getUpdatedBy() {
- return updatedBy;
- }
- public void setUpdatedBy(String updatedBy) {
- this.updatedBy = updatedBy == null ? null : updatedBy.trim();
- }
- public Date getUpdatedAt() {
- return updatedAt;
- }
- public void setUpdatedAt(Date updatedAt) {
- this.updatedAt = updatedAt;
- }
- public String getRemark() {
- return remark;
- }
- public void setRemark(String remark) {
- this.remark = remark == null ? null : remark.trim();
- }
- }
|