| | |
| | | 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 = "供应商类型(1-对公/2-对私)") |
| | | private Integer supplierType; |
| | | |
| | | @Excel(name = "纳税人识别号") |
| | | private String taxpayerIdentificationNum; |
| | |
| | | @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; |
| | | } |