昨天 684e4306a08feeae188070f264148e6765da8dcf
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
35
36
37
38
39
40
41
42
43
44
package com.ruoyi.outsourcing.excel;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDate;
 
/**
 * 委外订单导出对象
 */
@Data
public class OutsourcingOrderExcelDto {
 
    @Excel(name = "委外订单号")
    private String orderNo;
 
    @Excel(name = "合作商名称")
    private String partnerName;
 
    @Excel(name = "申请日期", dateFormat = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private LocalDate applyDate;
 
    @Excel(name = "期望交付日期", dateFormat = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private LocalDate expectedDeliveryDate;
 
    @Excel(name = "项目名称")
    private String projectName;
 
    @Excel(name = "委外金额")
    private BigDecimal contractAmount;
 
    @Excel(name = "付款方式")
    private String paymentMethod;
 
    @Excel(name = "状态")
    private String statusLabel;
 
    @Excel(name = "备注")
    private String remarks;
}