liyong
5 天以前 9d66bfbfcda297f628e6a857e343f98422f4534a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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;
 
 
}