广汽安道拓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.

55 lines
3.0 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 : WorkShiftEffLst的字段元数据
  10. *
  11. * @Author : 代码生成器创建
  12. *
  13. * @Date : 2021-04-20 10:57:41
  14. *
  15. ******************************************************************************/
  16. var WorkShiftEffLst_PlantNr = grmi.NewField("PlantNr", "WorkShiftEffLst.PlantNr", "plantnr", grmi.TypeInt)
  17. var WorkShiftEffLst_WorkShiftNr = grmi.NewField("WorkShiftNr", "WorkShiftEffLst.WorkShiftNr", "workshiftnr", grmi.TypeInt)
  18. var WorkShiftEffLst_LevelId = grmi.NewField("LevelId", "WorkShiftEffLst.LevelId", "levelid", grmi.TypeString)
  19. var WorkShiftEffLst_Descr = grmi.NewField("Descr", "WorkShiftEffLst.Descr", "descr", grmi.TypeString)
  20. var WorkShiftEffLst_PlanPersonUclQty = grmi.NewField("PlanPersonUclQty", "WorkShiftEffLst.PlanPersonUclQty", "planpersonuclqty", grmi.TypeInt)
  21. var WorkShiftEffLst_PlanPersonLclQty = grmi.NewField("PlanPersonLclQty", "WorkShiftEffLst.PlanPersonLclQty", "planpersonlclqty", grmi.TypeInt)
  22. var WorkShiftEffLst_PlanEfficiency = grmi.NewField("PlanEfficiency", "WorkShiftEffLst.PlanEfficiency", "planefficiency", grmi.TypeFloat64)
  23. var WorkShiftEffLst_LastModify = grmi.NewField("LastModify", "WorkShiftEffLst.LastModify", "lastmodify", grmi.TypeDateTime)
  24. var WorkShiftEffLst_LastUser = grmi.NewField("LastUser", "WorkShiftEffLst.LastUser", "lastuser", grmi.TypeString)
  25. var WorkShiftEffLst_CreateTime = grmi.NewField("CreateTime", "WorkShiftEffLst.CreateTime", "createtime", grmi.TypeDateTime)
  26. /******************************************************************************
  27. *
  28. * @Description : WorkShiftEffLst的元数据
  29. *
  30. * @Author : 代码生成器创建
  31. *
  32. * @Date : 2021-04-20 10:57:41
  33. *
  34. ******************************************************************************/
  35. var WorkShiftEffLst = grmi.NewEntity(
  36. "WorkShiftEffLst",
  37. func() interface{} { return &model.WorkShiftEffLst{} },
  38. map[string]grmi.Field{
  39. WorkShiftEffLst_PlantNr.Name: WorkShiftEffLst_PlantNr,
  40. WorkShiftEffLst_WorkShiftNr.Name: WorkShiftEffLst_WorkShiftNr,
  41. WorkShiftEffLst_LevelId.Name: WorkShiftEffLst_LevelId,
  42. WorkShiftEffLst_Descr.Name: WorkShiftEffLst_Descr,
  43. WorkShiftEffLst_PlanPersonUclQty.Name: WorkShiftEffLst_PlanPersonUclQty,
  44. WorkShiftEffLst_PlanPersonLclQty.Name: WorkShiftEffLst_PlanPersonLclQty,
  45. WorkShiftEffLst_PlanEfficiency.Name: WorkShiftEffLst_PlanEfficiency,
  46. WorkShiftEffLst_LastModify.Name: WorkShiftEffLst_LastModify,
  47. WorkShiftEffLst_LastUser.Name: WorkShiftEffLst_LastUser,
  48. WorkShiftEffLst_CreateTime.Name: WorkShiftEffLst_CreateTime,
  49. },
  50. []string{"PlantNr"},
  51. []string{"Descr", "PlanPersonUclQty", "PlanPersonLclQty", "PlanEfficiency", "LastUser"})