package com.ydtech.modules.console.dto; import com.alibaba.excel.annotation.ExcelProperty; import com.alibaba.excel.annotation.write.style.ColumnWidth; import com.alibaba.excel.annotation.write.style.HeadStyle; import com.alibaba.excel.enums.poi.VerticalAlignmentEnum; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.io.Serializable; /** * @version * @author: hxl * @Date: 2025/1/9 8:50 * @Description: 大订单的导出 */ @Data @ApiModel("查询Vo") @ColumnWidth(25) @HeadStyle(verticalAlignment = VerticalAlignmentEnum.CENTER) public class BigOrderUploadDto implements Serializable { @ApiModelProperty(value = "大订单号") @ExcelProperty(value = "大订单号",index = 0) private String orderNo; @ApiModelProperty(value = "大订单创建时间") @ExcelProperty(value = "大订单创建时间",index = 1) private String createTime; @ApiModelProperty(value = "大订单状态") @ExcelProperty(value = "大订单状态",index = 2) private String orderStatus; @ApiModelProperty(value = "车牌号") @ExcelProperty(value = "车牌号",index = 3) private String licenseNo; @ApiModelProperty(value = "车型") @ExcelProperty(value = "车型",index = 4) private String modelName; @ApiModelProperty(value = "发动机号") @ExcelProperty(value = "发动机号",index = 5) private String engineNo; @ApiModelProperty(value = "车架号") @ExcelProperty(value = "车架号",index = 6) private String frameNo; @ApiModelProperty(value = "小订单号") @ExcelProperty(value = "小订单号",index = 7) private String subOrderNo; @ApiModelProperty(value = "小订单号状态") @ExcelProperty(value = "小订单号状态",index = 8) private String subOrderStatus; @ApiModelProperty(value = "承保公司") @ExcelProperty(value = "承保公司",index = 9) private String companyName; @ApiModelProperty(value = "业务员名称") @ExcelProperty(value = "业务员名称",index = 10) private String userName; @ApiModelProperty(value = "业务员工号") @ExcelProperty(value = "业务员工号",index = 11) private String userId; @ApiModelProperty(value = "维护人") @ExcelProperty(value = "维护人",index = 12) private String leaderName; }