|
|
@ -165,14 +165,14 @@ try { |
|
|
|
let httpFileName = path.join(fileDir, `auto_generated_http_crud_${underscore_naming}_${struct}_${fileBaseName}`) |
|
|
|
|
|
|
|
|
|
|
|
let mark = `/*该文件由插件自动生成,无特殊情况请勿改动*/`; |
|
|
|
let mark = `//该文件由插件自动生成,无特殊情况请勿改动`; |
|
|
|
|
|
|
|
fs.writeFile(crudFileName, `${package_src}\n${mark}\n\n${tmp[2]}`, function () { |
|
|
|
fs.writeFile(crudFileName, `${mark}\n\n${package_src}\n\n${tmp[2]}`, function () { |
|
|
|
goplsfix(crudFileName); |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
fs.writeFile(httpFileName, `${package_src}\n${mark}\n\n${tmp[3]}`, function () { |
|
|
|
fs.writeFile(httpFileName, `${mark}\n\n${package_src}\n\n${tmp[3]}`, function () { |
|
|
|
|
|
|
|
goplsfix(httpFileName); |
|
|
|
}) |
|
|
|