zss
7 天以前 11502c7f9f26edda0733c43a17b5b773ee8447e4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.ruoyi.account.bean.vo.sales;
 
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.ruoyi.account.pojo.sales.AccountInvoiceApplication;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
@Data
@Schema(name = "AccountInvoiceApplicationVo", description = "财务管理--开票申请台账(返回)")
@ExcelIgnoreUnannotated
public class AccountInvoiceApplicationVo extends AccountInvoiceApplication {
 
    @Schema(description = "客户名称")
    @Excel(name = "客户名称")
    private String customerName;
 
    @Schema(description = "出库单号")
    @Excel(name = "出库单号")
    private String outboundBatches;
 
 
}