Skip to content

Commit

Permalink
feat:修订文档name命名,确保与文件类型匹配 (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
zsy619 authored Aug 22, 2024
1 parent fc87ac6 commit 6c8ae4f
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 30 deletions.
29 changes: 16 additions & 13 deletions datax/plugin/reader/csv/resources/plugin_job_template.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
{
"name": "cvsreader",
"parameter": {
"path":["",""],
"column":[
{
"index":"1",
"type":"time",
"format":"yyyy-MM-dd"
}
],
"encoding":"",
"delimiter":""
}
"name": "csvreader",
"parameter": {
"path": [
"",
""
],
"column": [
{
"index": "1",
"type": "time",
"format": "yyyy-MM-dd"
}
],
"encoding": "",
"delimiter": ""
}
}
36 changes: 19 additions & 17 deletions datax/plugin/reader/xlsx/resources/plugin_job_template.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
{
"name": "cvsreader",

"parameter": {
"column" :[
{
"index":"A",
"type":"time",
"format":"yyyy-MM-dd"
}
],
"xlsxs":[
{
"path":"",
"sheets":["",""]
}
]
}
"name": "xlsxreader",
"parameter": {
"column": [
{
"index": "A",
"type": "time",
"format": "yyyy-MM-dd"
}
],
"xlsxs": [
{
"path": "",
"sheets": [
"",
""
]
}
]
}
}

0 comments on commit 6c8ae4f

Please sign in to comment.