搞定车商方案表读取。
This commit is contained in:
24
代码/cpp/car_dealer_util/source/test/test.cpp
Normal file
24
代码/cpp/car_dealer_util/source/test/test.cpp
Normal 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;
|
||||
}
|
4
代码/cpp/car_dealer_util/source/test/test.h
Normal file
4
代码/cpp/car_dealer_util/source/test/test.h
Normal file
@@ -0,0 +1,4 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
void test();
|
Reference in New Issue
Block a user