parent
1900a1da6f
commit
983b32ccf9
@ -0,0 +1,41 @@ |
||||
package com.dxhy.order.consumer.modules.buyer.domain; |
||||
|
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import lombok.Data; |
||||
|
||||
@Data |
||||
public class UserInfoExcel { |
||||
|
||||
// 主编码的值
|
||||
@ExcelProperty("CODE") |
||||
private String CODE; |
||||
|
||||
// 姓名的值
|
||||
@ExcelProperty("DESC1") |
||||
private String DESC1; |
||||
|
||||
// 手机号码的值
|
||||
@ExcelProperty("DESC10") |
||||
private String DESC10; |
||||
|
||||
// 电子邮箱的值
|
||||
@ExcelProperty("DESC11") |
||||
private String DESC11; |
||||
|
||||
// 组织代码的值
|
||||
@ExcelProperty("DESC14") |
||||
private String DESC14; |
||||
|
||||
// 公司代码的值
|
||||
@ExcelProperty("DESC37") |
||||
private String DESC37; |
||||
|
||||
// 公司名称的值
|
||||
@ExcelProperty("DESC38") |
||||
private String DESC38; |
||||
|
||||
// 人员状态的值
|
||||
@ExcelProperty("DESC4") |
||||
private String DESC59; |
||||
} |
Loading…
Reference in new issue