...
|
...
|
@@ -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();
|
|
|
}
|
...
|
...
|
|