|
|
@@ -0,0 +1,45 @@
|
|
|
+package org.springblade.factory.excel;
|
|
|
+
|
|
|
+import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 工厂轮胎保导出对象
|
|
|
+ *
|
|
|
+ * @author Rain
|
|
|
+ */
|
|
|
+@Data
|
|
|
+public class FactoryTireInsuranceExcel {
|
|
|
+
|
|
|
+ @ExcelProperty("保险单号")
|
|
|
+ private String insuranceNo;
|
|
|
+
|
|
|
+ @ExcelProperty("消费者")
|
|
|
+ private String consumerName;
|
|
|
+
|
|
|
+ @ExcelProperty("电话")
|
|
|
+ private String consumerPhone;
|
|
|
+
|
|
|
+ @ExcelProperty("车牌号")
|
|
|
+ private String vehicleNumber;
|
|
|
+
|
|
|
+ @ExcelProperty("轮胎数量")
|
|
|
+ private Integer tireQuantity;
|
|
|
+
|
|
|
+ @ExcelProperty("门店名称")
|
|
|
+ private String storeName;
|
|
|
+
|
|
|
+ @ExcelProperty("经销商")
|
|
|
+ private String dealerName;
|
|
|
+
|
|
|
+ @ExcelProperty("注册日期")
|
|
|
+ private Date createTime;
|
|
|
+
|
|
|
+ @ExcelProperty("保险日期")
|
|
|
+ private Date insuranceTime;
|
|
|
+
|
|
|
+ @ExcelProperty("审核状态")
|
|
|
+ private String auditStatus;
|
|
|
+}
|