| | |
| | | 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 io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | @Excel(name = "供应商名称") |
| | | private String supplierName; |
| | | |
| | | @Excel(name = "供应商类型") |
| | | private String supplierType; |
| | | |
| | | @Excel(name = "纳税人识别号") |
| | | private String taxpayerIdentificationNum; |
| | | |