2026-09-03 50de7480237de2ba9d140a219d48a9b72211b8d2
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package cn.iocoder.yudao.module.srm.controller.admin.supplier.vo;
 
import cn.idev.excel.annotation.ExcelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * SRM 供应商档案导入 Excel VO
 *
 * 编码、名称为必填;类型支持填中文名称(生产型/贸易型/服务型/其他)或编码(1/2/3/4);
 * 状态 0=启用、1=禁用,留空默认启用
 */
@Data
public class SrmSupplierImportExcelVO {
 
    @ExcelProperty("供应商编码")
    private String code;
 
    @ExcelProperty("供应商名称")
    private String name;
 
    @ExcelProperty("供应商简称")
    private String shortName;
 
    @ExcelProperty("供应商类型(生产型/贸易型/服务型/其他)")
    private String type;
 
    @ExcelProperty("企业性质(国企/民营/外资/合资)")
    private String companyNature;
 
    @ExcelProperty("注册资金(万元)")
    private BigDecimal registeredCapital;
 
    @ExcelProperty("营业执照编号")
    private String businessLicenseNo;
 
    @ExcelProperty("税号")
    private String taxNo;
 
    @ExcelProperty("法人代表")
    private String legalPerson;
 
    @ExcelProperty("公司地址")
    private String address;
 
    @ExcelProperty("公司网址")
    private String website;
 
    @ExcelProperty("联系人")
    private String contactName;
 
    @ExcelProperty("联系电话")
    private String contactMobile;
 
    @ExcelProperty("邮箱")
    private String contactEmail;
 
    @ExcelProperty("开户银行")
    private String bankName;
 
    @ExcelProperty("银行账号")
    private String bankAccount;
 
    @ExcelProperty("状态(0启用/1禁用)")
    private Integer status;
 
    @ExcelProperty("备注")
    private String remark;
 
}