package com.ruoyi.system.domain.vo;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 创建支付VO
|
*
|
* @author ruoyi
|
* @date 2025-01-15
|
*/
|
public class TaskPaymentCreateVO {
|
|
/** 任务ID */
|
private Long taskId;
|
|
/** 支付方式 */
|
private String paymentMethod;
|
|
/** 结算金额 */
|
private BigDecimal settlementAmount;
|
|
/** 备注 */
|
private String remark;
|
|
public Long getTaskId() {
|
return taskId;
|
}
|
|
public void setTaskId(Long taskId) {
|
this.taskId = taskId;
|
}
|
|
public String getPaymentMethod() {
|
return paymentMethod;
|
}
|
|
public void setPaymentMethod(String paymentMethod) {
|
this.paymentMethod = paymentMethod;
|
}
|
|
public BigDecimal getSettlementAmount() {
|
return settlementAmount;
|
}
|
|
public void setSettlementAmount(BigDecimal settlementAmount) {
|
this.settlementAmount = settlementAmount;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
}
|