1
luodangjia
2025-01-22 759e0540a7ca20f33ab265d00e7944e4f18a562b
ruoyi-api/ruoyi-api-company/src/main/java/com/ruoyi/company/api/domain/excel/MgtCompanyExcel.java
@@ -1,6 +1,7 @@
package com.ruoyi.company.api.domain.excel;
import cn.idev.excel.annotation.ExcelProperty;
import cn.idev.excel.annotation.format.DateTimeFormat;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
@@ -14,7 +15,7 @@
public class MgtCompanyExcel {
    /** 公司名称 */
    @ExcelProperty(value = "公司名称")
    @ExcelProperty(value = "企业名称")
    private String companyName;
    @ExcelProperty(value = "法人")
@@ -29,11 +30,11 @@
    @ExcelProperty(value = "联系人")
    private String contactName;
    @ExcelProperty(value = "联系人方式")
    @ExcelProperty(value = "联系方式")
    private String contactPhone;
    @ExcelProperty(value = "注册时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    @DateTimeFormat("yyyy-MM-dd")
    private LocalDateTime createTime;
}