New file |
| | |
| | | package com.ruoyi.order.dto; |
| | | |
| | | import cn.afterturn.easypoi.excel.annotation.Excel; |
| | | import com.baomidou.mybatisplus.annotation.FieldFill; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | |
| | | @Data |
| | | @ApiModel(value = "导出公司") |
| | | public class TEnterpriseExport implements Serializable { |
| | | |
| | | @Excel(name = "公司名称",width = 30) |
| | | private String companyName; |
| | | @Excel(name = "新能源电动汽车保有量",width = 30) |
| | | private Integer vehiclesNumber; |
| | | @Excel(name = "联系人",width = 30) |
| | | private String contactName; |
| | | @Excel(name = "联系电话",width = 30) |
| | | private String phone; |
| | | @Excel(name = "备注",width = 30) |
| | | private String remark; |
| | | @Excel(name = "申请时间",width = 30) |
| | | private String createTime; |
| | | |
| | | |
| | | |
| | | } |