高级排程
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.

51 lines
2.3 KiB

3 years ago
  1. // Copyright (c) Shenyang Leading Edge Intelligent Technology Co., Ltd. All rights reserved.
  2. package base
  3. import (
  4. "LAPP_AS/grmi"
  5. model "LAPP_AS/models/base"
  6. )
  7. /******************************************************************************
  8. *
  9. * @Description : TabColName的字段元数据
  10. *
  11. * @Author : 代码生成器创建
  12. *
  13. * @Date : 2021-08-20 11:28:44
  14. *
  15. ******************************************************************************/
  16. var TabColName_TabName = grmi.NewField("TabName", "[TabColName].TabName", "tabname", grmi.TypeString)
  17. var TabColName_ColName = grmi.NewField("ColName", "[TabColName].ColName", "colname", grmi.TypeString)
  18. var TabColName_TextLabel = grmi.NewField("TextLabel", "[TabColName].TextLabel", "textlabel", grmi.TypeString)
  19. var TabColName_LongLabel = grmi.NewField("LongLabel", "[TabColName].LongLabel", "longlabel", grmi.TypeString)
  20. var TabColName_ValFormat = grmi.NewField("ValFormat", "[TabColName].ValFormat", "valformat", grmi.TypeString)
  21. var TabColName_LastModify = grmi.NewField("LastModify", "[TabColName].LastModify", "lastmodify", grmi.TypeDateTime)
  22. var TabColName_LastUser = grmi.NewField("LastUser", "[TabColName].LastUser", "lastuser", grmi.TypeString)
  23. var TabColName_CreateTime = grmi.NewField("CreateTime", "[TabColName].CreateTime", "createtime", grmi.TypeDateTime)
  24. /******************************************************************************
  25. *
  26. * @Description : TabColName的元数据
  27. *
  28. * @Author : 代码生成器创建
  29. *
  30. * @Date : 2021-08-20 11:28:44
  31. *
  32. ******************************************************************************/
  33. var TabColName = grmi.NewEntity(
  34. "TabColName",
  35. func() interface{} { return &model.TabColName{} },
  36. map[string]grmi.Field{
  37. TabColName_TabName.Name: TabColName_TabName,
  38. TabColName_ColName.Name: TabColName_ColName,
  39. TabColName_TextLabel.Name: TabColName_TextLabel,
  40. TabColName_LongLabel.Name: TabColName_LongLabel,
  41. TabColName_ValFormat.Name: TabColName_ValFormat,
  42. TabColName_LastModify.Name: TabColName_LastModify,
  43. TabColName_LastUser.Name: TabColName_LastUser,
  44. TabColName_CreateTime.Name: TabColName_CreateTime,
  45. },
  46. []string{},
  47. []string{"TextLabel", "LongLabel", "ValFormat", "LastUser"})