buhuazhen
6 天以前 a1f56d054684d1294d027ed9f8dfbea6cee654aa
src/main/java/com/ruoyi/basic/excel/SupplierManageExcelDto.java
@@ -5,6 +5,7 @@
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.time.LocalDateTime;
@@ -14,19 +15,19 @@
    @Excel(name = "供应商名称")
    private String supplierName;
    @Excel(name = "纳税人识别号")
//    @Excel(name = "纳税人识别号")
    private String taxpayerIdentificationNum;
    @Excel(name = "公司地址")
//    @Excel(name = "公司地址")
    private String companyAddress;
    @Excel(name = "公司电话")
//    @Excel(name = "公司电话")
    private String companyPhone;
    @Excel(name = "开户行")
//    @Excel(name = "开户行")
    private String bankAccountName;
    @Excel(name = "账号")
//    @Excel(name = "账号")
    private String bankAccountNum;
    @Excel(name = "联系人")
@@ -35,10 +36,11 @@
    @Excel(name = "联系电话")
    private String contactUserPhone;
    @Excel(name = "维护人")
//    @Excel(name = "维护人")
    private String maintainUserName;
    @Excel(name = "维护时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime maintainTime;
//    @Excel(name = "维护时间")
//    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
//    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
//    private LocalDateTime maintainTime;
}