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(); } }