parent
4b1ddc0efe
commit
9314235053
@ -0,0 +1,71 @@ |
|||||||
|
package com.dxhy.order.consumer.modules.buyer.domain; |
||||||
|
|
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelIgnore; |
||||||
|
import com.alibaba.excel.annotation.ExcelProperty; |
||||||
|
import com.alibaba.fastjson.annotation.JSONField; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
@Data |
||||||
|
public class BuyerEntityExcel { |
||||||
|
|
||||||
|
// 主编码的值
|
||||||
|
@ExcelProperty("CODE") |
||||||
|
private String CODE; |
||||||
|
|
||||||
|
// 业务伙伴全称的值
|
||||||
|
@ExcelProperty("DESC1") |
||||||
|
private String DESC1; |
||||||
|
|
||||||
|
// 法人代表的值
|
||||||
|
@ExcelProperty("DESC12") |
||||||
|
private String DESC12; |
||||||
|
|
||||||
|
// 统一社会信用代码(税号)的值
|
||||||
|
@ExcelProperty("DESC14") |
||||||
|
private String DESC14; |
||||||
|
|
||||||
|
// 省份的值
|
||||||
|
@ExcelProperty("DESC22") |
||||||
|
private String DESC22; |
||||||
|
|
||||||
|
// 城市的值
|
||||||
|
@ExcelProperty("DESC23") |
||||||
|
private String DESC23; |
||||||
|
|
||||||
|
// 街道/门牌号的值
|
||||||
|
@ExcelProperty("DESC24") |
||||||
|
private String DESC24; |
||||||
|
|
||||||
|
// 公司电话的值
|
||||||
|
@ExcelProperty("DESC26") |
||||||
|
private String DESC26; |
||||||
|
|
||||||
|
// 手机号
|
||||||
|
@ExcelProperty("DESC27") |
||||||
|
private String DESC27; |
||||||
|
|
||||||
|
// 邮箱
|
||||||
|
@ExcelProperty("DESC29") |
||||||
|
private String DESC29; |
||||||
|
|
||||||
|
// 是否客户的值
|
||||||
|
@ExcelProperty("DESC38") |
||||||
|
private String DESC38; |
||||||
|
|
||||||
|
// 是否供应商的值
|
||||||
|
@ExcelProperty("DESC39") |
||||||
|
private String DESC39; |
||||||
|
|
||||||
|
// 开票名称的值
|
||||||
|
@ExcelProperty("DESC48") |
||||||
|
private String DESC48; |
||||||
|
|
||||||
|
// 开票税号的值
|
||||||
|
@ExcelProperty("DESC49") |
||||||
|
private String DESC49; |
||||||
|
|
||||||
|
@ExcelIgnore |
||||||
|
@JSONField(name = "MULTICODE") |
||||||
|
private BuyerEntityYhItemExcel MULTICODE; |
||||||
|
} |
@ -0,0 +1,25 @@ |
|||||||
|
package com.dxhy.order.consumer.modules.buyer.domain; |
||||||
|
|
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelIgnore; |
||||||
|
import com.alibaba.excel.annotation.ExcelProperty; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
@Data |
||||||
|
public class BuyerEntityYhItemExcel { |
||||||
|
|
||||||
|
// 银行名称的值
|
||||||
|
@ExcelProperty("DESC3") |
||||||
|
private String DESC3; |
||||||
|
// 银行账号的值
|
||||||
|
@ExcelProperty("DESC4") |
||||||
|
private String DESC4; |
||||||
|
// 节点编码的值
|
||||||
|
@ExcelProperty("LISTCODE") |
||||||
|
private String LISTCODE; |
||||||
|
// A4
|
||||||
|
@ExcelIgnore |
||||||
|
private String SPECIALITYCODE; |
||||||
|
@ExcelProperty("CODEID") |
||||||
|
private String CODEID; |
||||||
|
} |
Loading…
Reference in new issue