chenrui
2025-05-12 4f6d90f81e1328baeb8c9f2c9c23e34b7b8f002a
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.basic.excel;
 
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.time.LocalDateTime;
 
@Data
public class SupplierManageExcelDto {
 
    @Excel(name = "供应商名称")
    private String supplierName;
 
    @Excel(name = "纳税人识别号")
    private String taxpayerIdentificationNum;
 
    @Excel(name = "公司地址")
    private String companyAddress;
 
    @Excel(name = "公司电话")
    private String companyPhone;
 
    @Excel(name = "开户行")
    private String bankAccountName;
 
    @Excel(name = "账号")
    private String bankAccountNum;
 
    @Excel(name = "联系人")
    private String contactUserName;
 
    @Excel(name = "联系电话")
    private String contactUserPhone;
 
    @Excel(name = "维护人")
    private String maintainUserName;
 
    @Excel(name = "维护时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime maintainTime;
}