123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- package com.idea.oa.apply.model;
- import java.io.Serializable;
- import java.math.BigDecimal;
- import java.util.Date;
- public class ApplyPayment implements Serializable {
- private String id;
- private String orderId;
- private BigDecimal totalReturnMoney;
- private BigDecimal totalPayMoney;
- private String payName;
- private BigDecimal payMoney;
- private String costsType;
- private Integer billType;
- private BigDecimal billMoney;
- private String billNumber;
- private String billRate;
- private String fileDataIds;
- private Integer status;
- private String createdBy;
- private Date createdAt;
- private String updatedBy;
- private Date updatedAt;
- private String remark;
- private Date payTime;
- private String payRemark;
- 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 getOrderId() {
- return orderId;
- }
- public void setOrderId(String orderId) {
- this.orderId = orderId == null ? null : orderId.trim();
- }
- public BigDecimal getTotalReturnMoney() {
- return totalReturnMoney;
- }
- public void setTotalReturnMoney(BigDecimal totalReturnMoney) {
- this.totalReturnMoney = totalReturnMoney;
- }
- public BigDecimal getTotalPayMoney() {
- return totalPayMoney;
- }
- public void setTotalPayMoney(BigDecimal totalPayMoney) {
- this.totalPayMoney = totalPayMoney;
- }
- public String getPayName() {
- return payName;
- }
- public void setPayName(String payName) {
- this.payName = payName == null ? null : payName.trim();
- }
- public BigDecimal getPayMoney() {
- return payMoney;
- }
- public void setPayMoney(BigDecimal payMoney) {
- this.payMoney = payMoney;
- }
- public String getCostsType() {
- return costsType;
- }
- public void setCostsType(String costsType) {
- this.costsType = costsType == null ? null : costsType.trim();
- }
- public Integer getBillType() {
- return billType;
- }
- public void setBillType(Integer billType) {
- this.billType = billType;
- }
- public BigDecimal getBillMoney() {
- return billMoney;
- }
- public void setBillMoney(BigDecimal billMoney) {
- this.billMoney = billMoney;
- }
- public String getBillNumber() {
- return billNumber;
- }
- public void setBillNumber(String billNumber) {
- this.billNumber = billNumber == null ? null : billNumber.trim();
- }
- public String getBillRate() {
- return billRate;
- }
- public void setBillRate(String billRate) {
- this.billRate = billRate == null ? null : billRate.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 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();
- }
- public Date getPayTime() {
- return payTime;
- }
- public void setPayTime(Date payTime) {
- this.payTime = payTime;
- }
- public String getPayRemark() {
- return payRemark;
- }
- public void setPayRemark(String payRemark) {
- this.payRemark = payRemark == null ? null : payRemark.trim();
- }
- }
|