https://github.com/jiayaoguang/excelexport
excel export to json and java c# code
https://github.com/jiayaoguang/excelexport
Last synced: 4 months ago
JSON representation
excel export to json and java c# code
- Host: GitHub
- URL: https://github.com/jiayaoguang/excelexport
- Owner: jiayaoguang
- License: apache-2.0
- Created: 2024-07-17T14:23:01.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-10-28T09:08:03.000Z (9 months ago)
- Last Synced: 2025-01-20T18:15:17.364Z (6 months ago)
- Language: Java
- Size: 49.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# excelExport
excel表格数据导出为json数据,并生成对应代码Excel 表配置 :

生成的java代码 :
public class ConfTest {
private String name;
private int id;
private long time;
public ConfTest() {
}
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
private int id;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
private long time;
public long getTime() {
return time;
}
public void setTime(long time) {
this.time = time;
}
}