Authored by mali

测试代码

... ... @@ -12,9 +12,9 @@ import java.util.List;
public class ExcelParseUtil {
public static void main(String[] args) {
try {
List<ProductProfit> dataList = XlsxUtils.parse(new File("C:\\Users\\li.ma\\Desktop\\8月份新品爆款扣点调整fortiger0813.xlsx"), ProductProfit.class);
List<SizePoolImageDemo> dataList = XlsxUtils.parse(new File("C:\\Users\\li.ma\\Desktop\\ml1.xlsx"), SizePoolImageDemo.class);
for (ProductProfit item : dataList) {
for (SizePoolImageDemo item : dataList) {
//String l = String.format("curl 'http://172.31.70.39:8088/ufoPlatform/live/generateMp4Vedio?debug=XYZ&orderCode=%d&startTime=%d&endTime=%d&cameraCode=%d'", item.getOrderCode(), item.getStartTime(), item.getEndTime() + 1, item.getCameraCode());
/*if (item.getSeriesId() == 0) {
... ... @@ -23,10 +23,10 @@ public class ExcelParseUtil {
System.out.println(String.format("update ufo_product.product set brand_id = %d, series_id = %d where id = %d;", item.getBrandId(), item.getSeriesId(), item.getId()));
}*/
System.out.println(String.format("insert into ufo_product.product_profit(product_id, profit_rate) values(%d, %.3f);", item.getProductId(), item.getProfitRate()/100));
System.out.println(String.format("insert into ufo_product.size_pool_image(size_pool_id, image_url,image_width,image_height) values(%d, '%s', %d, %d);",
item.getProductId(), item.getImageUrl(), item.getWidth(), item.getHeight()));
}
} catch (IOException e) {
e.printStackTrace();
}
... ...
package com.yohobuy.ufo;
import com.yoho.ufo.annotation.BatchImportField;
import lombok.Data;
/**
* Created by li.ma on 2020/5/9.
*/
@Data
public class SizePoolImageDemo {
@BatchImportField(index = 0)
private Integer productId;
@BatchImportField(index = 1)
private String imageUrl;
@BatchImportField(index = 2)
private Integer width;
@BatchImportField(index = 3)
private Integer height;
}
... ...