From d3b5fe3ea8c054055c9cc5ef450a180584968aea Mon Sep 17 00:00:00 2001 From: chenrui <1187576398@qq.com> Date: 星期四, 08 五月 2025 17:33:13 +0800 Subject: [PATCH] 开票登记功能开发 --- src/main/java/com/ruoyi/basic/excel/SupplierManageExcelDto.java | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 44 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/ruoyi/basic/excel/SupplierManageExcelDto.java b/src/main/java/com/ruoyi/basic/excel/SupplierManageExcelDto.java new file mode 100644 index 0000000..a37252e --- /dev/null +++ b/src/main/java/com/ruoyi/basic/excel/SupplierManageExcelDto.java @@ -0,0 +1,44 @@ +package com.ruoyi.basic.excel; + +import com.baomidou.mybatisplus.annotation.*; +import com.fasterxml.jackson.annotation.JsonFormat; +import com.ruoyi.framework.aspectj.lang.annotation.Excel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.time.LocalDateTime; + +@Data +public class SupplierManageExcelDto { + + @Excel(name = "渚涘簲鍟嗗悕绉�") + private String supplierName; + + @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 = "缁存姢浜篒D") + private Integer maintainUserId; + + @Excel(name = "缁存姢鏃堕棿") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private LocalDateTime maintainTime; +} -- Gitblit v1.9.3