package com.ruoyi.stock.execl;
|
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import lombok.Data;
|
|
@Data
|
public class ManufacturerExcelDto {
|
|
@Excel(name = "厂家名称")
|
private String name;
|
|
@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;
|
}
|