package com.ruoyi.account.bean.vo.purchase;
|
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
import com.ruoyi.account.pojo.purchase.AccountPurchasePayment;
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
@Data
|
@Schema(name = "AccountPurchasePaymentVo", description = "财务管理--付款单台账(返回)")
|
@ExcelIgnoreUnannotated
|
public class AccountPurchasePaymentVo extends AccountPurchasePayment {
|
|
@Schema(description = "供应商名称")
|
@Excel(name = "供应商名称")
|
private String supplierName;
|
|
@Schema(description = "付款申请单号")
|
@Excel(name = "付款申请单号")
|
private String invoiceApplicationNo;
|
|
@Schema(description = "开户行")
|
@Excel(name = "开户行")
|
private String bankAccountName;
|
|
@Schema(description = "银行账号")
|
@Excel(name = "银行账号")
|
private String bankAccountNum;
|
|
@Schema(description = "是否生成了对账单")
|
private boolean isAccountStatemen;
|
|
|
}
|