苏州瑞玛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.

57 lines
3.1 KiB

  1. // Copyright (c) Shenyang Leading Edge Intelligent Technology Co., Ltd. All rights reserved.
  2. package base
  3. import (
  4. "leit.com/LAPP_CHEERSSON_BACKEND/grmi"
  5. model "leit.com/LAPP_CHEERSSON_BACKEND/models/base"
  6. )
  7. /******************************************************************************
  8. *
  9. * @Description : WorkPlaceGrp的字段元数据
  10. *
  11. * @Author : 代码生成器创建
  12. *
  13. * @Date : 2021-11-30 14:02:35
  14. *
  15. ******************************************************************************/
  16. var WorkPlaceGrp_PlantNr = grmi.NewField("PlantNr", "[WorkPlaceGrp].PlantNr", "plantnr", grmi.TypeInt)
  17. var WorkPlaceGrp_WorkPlaceGrpId = grmi.NewField("WorkPlaceGrpId", "[WorkPlaceGrp].WorkPlaceGrpId", "workplacegrpid", grmi.TypeString)
  18. var WorkPlaceGrp_WorkPlaceGrpType = grmi.NewField("WorkPlaceGrpType", "[WorkPlaceGrp].WorkPlaceGrpType", "workplacegrptype", grmi.TypeString)
  19. var WorkPlaceGrp_Descr = grmi.NewField("Descr", "[WorkPlaceGrp].Descr", "descr", grmi.TypeString)
  20. var WorkPlaceGrp_WorkAreaId = grmi.NewField("WorkAreaId", "[WorkPlaceGrp].WorkAreaId", "workareaid", grmi.TypeString)
  21. var WorkPlaceGrp_WeekModelNr = grmi.NewField("WeekModelNr", "[WorkPlaceGrp].WeekModelNr", "weekmodelnr", grmi.TypeInt)
  22. var WorkPlaceGrp_WorkCalendarNr = grmi.NewField("WorkCalendarNr", "[WorkPlaceGrp].WorkCalendarNr", "workcalendarnr", grmi.TypeInt)
  23. var WorkPlaceGrp_CostCenterId = grmi.NewField("CostCenterId", "[WorkPlaceGrp].CostCenterId", "costcenterid", grmi.TypeString)
  24. var WorkPlaceGrp_LastModify = grmi.NewField("LastModify", "[WorkPlaceGrp].LastModify", "lastmodify", grmi.TypeDateTime)
  25. var WorkPlaceGrp_LastUser = grmi.NewField("LastUser", "[WorkPlaceGrp].LastUser", "lastuser", grmi.TypeString)
  26. var WorkPlaceGrp_CreateTime = grmi.NewField("CreateTime", "[WorkPlaceGrp].CreateTime", "createtime", grmi.TypeDateTime)
  27. /******************************************************************************
  28. *
  29. * @Description : WorkPlaceGrp的元数据
  30. *
  31. * @Author : 代码生成器创建
  32. *
  33. * @Date : 2021-11-30 14:02:35
  34. *
  35. ******************************************************************************/
  36. var WorkPlaceGrp = grmi.NewEntity(
  37. "WorkPlaceGrp",
  38. func() interface{} { return &model.WorkPlaceGrp{} },
  39. map[string]grmi.Field{
  40. WorkPlaceGrp_PlantNr.Name: WorkPlaceGrp_PlantNr,
  41. WorkPlaceGrp_WorkPlaceGrpId.Name: WorkPlaceGrp_WorkPlaceGrpId,
  42. WorkPlaceGrp_WorkPlaceGrpType.Name: WorkPlaceGrp_WorkPlaceGrpType,
  43. WorkPlaceGrp_Descr.Name: WorkPlaceGrp_Descr,
  44. WorkPlaceGrp_WorkAreaId.Name: WorkPlaceGrp_WorkAreaId,
  45. WorkPlaceGrp_WeekModelNr.Name: WorkPlaceGrp_WeekModelNr,
  46. WorkPlaceGrp_WorkCalendarNr.Name: WorkPlaceGrp_WorkCalendarNr,
  47. WorkPlaceGrp_CostCenterId.Name: WorkPlaceGrp_CostCenterId,
  48. WorkPlaceGrp_LastModify.Name: WorkPlaceGrp_LastModify,
  49. WorkPlaceGrp_LastUser.Name: WorkPlaceGrp_LastUser,
  50. WorkPlaceGrp_CreateTime.Name: WorkPlaceGrp_CreateTime,
  51. },
  52. []string{"PlantNr"},
  53. []string{"WorkPlaceGrpType", "Descr", "WorkAreaId", "WeekModelNr", "WorkCalendarNr", "CostCenterId", "LastUser"})