苏州瑞玛APS项目web后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
305 B

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. package main
  2. import (
  3. "fmt"
  4. "leit.com/LAPP_CHEERSSON_BACKEND/task"
  5. )
  6. func main() {
  7. err, taskVal := task.EtlTaskArticleInit()
  8. if err != nil {
  9. fmt.Println(err)
  10. return
  11. }
  12. task.ImportMaterial()
  13. ids := task.ImportMaterialGroupSearch()
  14. task.ImportArticle(taskVal, ids)
  15. fmt.Println("OK")
  16. return
  17. }