|
@@ -5,6 +5,7 @@ import java.util.Date;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.fs.common.annotation.Excel;
|
|
|
import com.fs.common.core.domain.BaseEntity;
|
|
|
+import lombok.Data;
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
|
@@ -14,6 +15,7 @@ import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
* @author fs
|
|
|
* @date 2023-02-27
|
|
|
*/
|
|
|
+@Data
|
|
|
public class CompanyRecharge extends BaseEntity
|
|
|
{
|
|
|
private static final long serialVersionUID = 1L;
|
|
@@ -72,152 +74,5 @@ public class CompanyRecharge extends BaseEntity
|
|
|
private Date auditTime;
|
|
|
|
|
|
private String remark;
|
|
|
-
|
|
|
- @Override
|
|
|
- public String getRemark() {
|
|
|
- return remark;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public void setRemark(String remark) {
|
|
|
- this.remark = remark;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRechargeId(Long rechargeId)
|
|
|
- {
|
|
|
- this.rechargeId = rechargeId;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getRechargeId()
|
|
|
- {
|
|
|
- return rechargeId;
|
|
|
- }
|
|
|
- public void setCompanyId(Long companyId)
|
|
|
- {
|
|
|
- this.companyId = companyId;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getCompanyId()
|
|
|
- {
|
|
|
- return companyId;
|
|
|
- }
|
|
|
- public void setRechargeNo(String rechargeNo)
|
|
|
- {
|
|
|
- this.rechargeNo = rechargeNo;
|
|
|
- }
|
|
|
-
|
|
|
- public String getRechargeNo()
|
|
|
- {
|
|
|
- return rechargeNo;
|
|
|
- }
|
|
|
- public void setMoney(BigDecimal money)
|
|
|
- {
|
|
|
- this.money = money;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getMoney()
|
|
|
- {
|
|
|
- return money;
|
|
|
- }
|
|
|
- public void setPayTime(Date payTime)
|
|
|
- {
|
|
|
- this.payTime = payTime;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getPayTime()
|
|
|
- {
|
|
|
- return payTime;
|
|
|
- }
|
|
|
- public void setStatus(Integer status)
|
|
|
- {
|
|
|
- this.status = status;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getStatus()
|
|
|
- {
|
|
|
- return status;
|
|
|
- }
|
|
|
- public void setPayType(Integer payType)
|
|
|
- {
|
|
|
- this.payType = payType;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getPayType()
|
|
|
- {
|
|
|
- return payType;
|
|
|
- }
|
|
|
- public void setTradeNo(String tradeNo)
|
|
|
- {
|
|
|
- this.tradeNo = tradeNo;
|
|
|
- }
|
|
|
-
|
|
|
- public String getTradeNo()
|
|
|
- {
|
|
|
- return tradeNo;
|
|
|
- }
|
|
|
- public void setBalance(BigDecimal balance)
|
|
|
- {
|
|
|
- this.balance = balance;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getBalance()
|
|
|
- {
|
|
|
- return balance;
|
|
|
- }
|
|
|
- public void setCreateUserId(Long createUserId)
|
|
|
- {
|
|
|
- this.createUserId = createUserId;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getCreateUserId()
|
|
|
- {
|
|
|
- return createUserId;
|
|
|
- }
|
|
|
- public void setIsAudit(Integer isAudit)
|
|
|
- {
|
|
|
- this.isAudit = isAudit;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getIsAudit()
|
|
|
- {
|
|
|
- return isAudit;
|
|
|
- }
|
|
|
- public void setAuditUserId(Long auditUserId)
|
|
|
- {
|
|
|
- this.auditUserId = auditUserId;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getAuditUserId()
|
|
|
- {
|
|
|
- return auditUserId;
|
|
|
- }
|
|
|
- public void setAuditTime(Date auditTime)
|
|
|
- {
|
|
|
- this.auditTime = auditTime;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getAuditTime()
|
|
|
- {
|
|
|
- return auditTime;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("rechargeId", getRechargeId())
|
|
|
- .append("companyId", getCompanyId())
|
|
|
- .append("rechargeNo", getRechargeNo())
|
|
|
- .append("money", getMoney())
|
|
|
- .append("createTime", getCreateTime())
|
|
|
- .append("payTime", getPayTime())
|
|
|
- .append("status", getStatus())
|
|
|
- .append("payType", getPayType())
|
|
|
- .append("tradeNo", getTradeNo())
|
|
|
- .append("balance", getBalance())
|
|
|
- .append("createUserId", getCreateUserId())
|
|
|
- .append("isAudit", getIsAudit())
|
|
|
- .append("auditUserId", getAuditUserId())
|
|
|
- .append("auditTime", getAuditTime())
|
|
|
- .toString();
|
|
|
- }
|
|
|
+ private String imgs;
|
|
|
}
|