123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- package com.idea.oa.apply.model;
- import java.io.Serializable;
- import java.util.Date;
- public class ApplyUseMoney implements Serializable {
- private String id;
- private String proId;
- private String useReasons;
- private String payeeName;
- private String bankName;
- private String bankAccountNum;
- private String makeNum;
- private Date makeDate;
- private String payType;
- 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 getProId() {
- return proId;
- }
- public void setProId(String proId) {
- this.proId = proId == null ? null : proId.trim();
- }
- public String getUseReasons() {
- return useReasons;
- }
- public void setUseReasons(String useReasons) {
- this.useReasons = useReasons == null ? null : useReasons.trim();
- }
- public String getPayeeName() {
- return payeeName;
- }
- public void setPayeeName(String payeeName) {
- this.payeeName = payeeName == null ? null : payeeName.trim();
- }
- public String getBankName() {
- return bankName;
- }
- public void setBankName(String bankName) {
- this.bankName = bankName == null ? null : bankName.trim();
- }
- public String getBankAccountNum() {
- return bankAccountNum;
- }
- public void setBankAccountNum(String bankAccountNum) {
- this.bankAccountNum = bankAccountNum == null ? null : bankAccountNum.trim();
- }
- public String getMakeNum() {
- return makeNum;
- }
- public void setMakeNum(String makeNum) {
- this.makeNum = makeNum == null ? null : makeNum.trim();
- }
- public Date getMakeDate() {
- return makeDate;
- }
- public void setMakeDate(Date makeDate) {
- this.makeDate = makeDate;
- }
- public String getPayType() {
- return payType;
- }
- public void setPayType(String payType) {
- this.payType = payType == null ? null : payType.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();
- }
- }
|