Browse Source

增加品号字段,漏提文件提交

liyuan 1 week ago
parent
commit
f5d23d9a18

+ 45 - 0
blade-service-api/blade-factory-api/src/main/java/org/springblade/factory/excel/FactoryTireInsuranceExcel.java

@@ -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;
+}

+ 6 - 0
blade-service-api/gubersail-shop-app-api/src/main/java/com/gubersail/shop/app/api/insurance/entity/ShopAppTireInsuranceFiles.java

@@ -149,4 +149,10 @@ public class ShopAppTireInsuranceFiles implements Serializable {
 	 */
 	private String dot;
 
+
+	/**
+	 * 产品编号
+	 */
+	private String productCode;
+
 }