搞定车商方案表读取。

This commit is contained in:
2019-12-19 17:10:29 +08:00
parent 57194b10ea
commit 413c6c2f29
10 changed files with 301 additions and 30 deletions

View File

@@ -0,0 +1,24 @@

#include <vector>
#include <string>
#include "test.h"
#include "../data/DataManipulation/Excel/LoadFromExcel.h"
using namespace std;
void excelTest();
void test()
{
excelTest();
}
void excelTest()
{
vector<CarDealerScheme> schemeVector;
wstring filePath = L"D:/develop/projects_win/2019/car_dealer_util/数据/PC端导入模板管理员版.xlsx";
LoadCarDealerSchemeFromXlsx(filePath, 0, 1, schemeVector);
return;
}

View File

@@ -0,0 +1,4 @@

#pragma once
void test();