广汽安道拓Acura项目MES后台
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.

69 lines
3.3 KiB

  1. // Copyright (c) Shenyang Leading Edge Intelligent Technology Co., Ltd. All rights reserved.
  2. package base
  3. import (
  4. "LAPP_ACURA_MOM_BACKEND/grmi"
  5. model "LAPP_ACURA_MOM_BACKEND/models/base"
  6. )
  7. /******************************************************************************
  8. *
  9. * @Description : Etl的字段元数据
  10. *
  11. * @Author : 代码生成器创建
  12. *
  13. * @Date : 2021-04-20 10:57:41
  14. *
  15. ******************************************************************************/
  16. var Etl_PlantNr = grmi.NewField("PlantNr", "Etl.PlantNr", "plantnr", grmi.TypeInt)
  17. var Etl_EtlId = grmi.NewField("EtlId", "Etl.EtlId", "etlid", grmi.TypeInt)
  18. var Etl_FromDb = grmi.NewField("FromDb", "Etl.FromDb", "fromdb", grmi.TypeString)
  19. var Etl_FromTable = grmi.NewField("FromTable", "Etl.FromTable", "fromtable", grmi.TypeString)
  20. var Etl_ToDb = grmi.NewField("ToDb", "Etl.ToDb", "todb", grmi.TypeString)
  21. var Etl_ToTable = grmi.NewField("ToTable", "Etl.ToTable", "totable", grmi.TypeString)
  22. var Etl_SqlShow = grmi.NewField("SqlShow", "Etl.SqlShow", "sqlshow", grmi.TypeString)
  23. var Etl_Status = grmi.NewField("Status", "Etl.Status", "status", grmi.TypeString)
  24. var Etl_SearchType = grmi.NewField("SearchType", "Etl.SearchType", "searchtype", grmi.TypeInt)
  25. var Etl_SearchTime = grmi.NewField("SearchTime", "Etl.SearchTime", "searchtime", grmi.TypeString)
  26. var Etl_SearchFiled = grmi.NewField("SearchFiled", "Etl.SearchFiled", "searchfiled", grmi.TypeString)
  27. var Etl_ToDriverName = grmi.NewField("ToDriverName", "Etl.ToDriverName", "todrivername", grmi.TypeString)
  28. var Etl_ToType = grmi.NewField("ToType", "Etl.ToType", "totype", grmi.TypeString)
  29. var Etl_ChooseType = grmi.NewField("ChooseType", "Etl.ChooseType", "choosetype", grmi.TypeString)
  30. var Etl_LastModify = grmi.NewField("LastModify", "Etl.LastModify", "lastmodify", grmi.TypeDateTime)
  31. var Etl_LastUser = grmi.NewField("LastUser", "Etl.LastUser", "lastuser", grmi.TypeString)
  32. var Etl_CreateTime = grmi.NewField("CreateTime", "Etl.CreateTime", "createtime", grmi.TypeDateTime)
  33. /******************************************************************************
  34. *
  35. * @Description : Etl的元数据
  36. *
  37. * @Author : 代码生成器创建
  38. *
  39. * @Date : 2021-04-20 10:57:41
  40. *
  41. ******************************************************************************/
  42. var Etl = grmi.NewEntity(
  43. "Etl",
  44. func() interface{} { return &model.Etl{} },
  45. map[string]grmi.Field{
  46. Etl_PlantNr.Name: Etl_PlantNr,
  47. Etl_EtlId.Name: Etl_EtlId,
  48. Etl_FromDb.Name: Etl_FromDb,
  49. Etl_FromTable.Name: Etl_FromTable,
  50. Etl_ToDb.Name: Etl_ToDb,
  51. Etl_ToTable.Name: Etl_ToTable,
  52. Etl_SqlShow.Name: Etl_SqlShow,
  53. Etl_Status.Name: Etl_Status,
  54. Etl_SearchType.Name: Etl_SearchType,
  55. Etl_SearchTime.Name: Etl_SearchTime,
  56. Etl_SearchFiled.Name: Etl_SearchFiled,
  57. Etl_ToDriverName.Name: Etl_ToDriverName,
  58. Etl_ToType.Name: Etl_ToType,
  59. Etl_ChooseType.Name: Etl_ChooseType,
  60. Etl_LastModify.Name: Etl_LastModify,
  61. Etl_LastUser.Name: Etl_LastUser,
  62. Etl_CreateTime.Name: Etl_CreateTime,
  63. },
  64. []string{"PlantNr"},
  65. []string{"FromDb", "FromTable", "ToDb", "ToTable", "SqlShow", "Status", "SearchType", "SearchTime", "SearchFiled", "ToDriverName", "ToType", "ChooseType", "LastUser"})