GAAS 广汽安道拓GFrame金属件MOM项目
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.

33 lines
1.9 KiB

  1. package base
  2. import (
  3. "leit.com/LAPP_GAAS_GFrame/grmi"
  4. model "leit.com/LAPP_GAAS_GFrame/models/base"
  5. )
  6. //WorkShiftEffLst的字段元数据
  7. var WorkShiftEffLst_WorkShiftNr = grmi.NewField("WorkShiftNr", "WorkShiftNr", "workshiftnr", grmi.TypeInt)
  8. var WorkShiftEffLst_LevelId = grmi.NewField("LevelId", "LevelId", "levelid", grmi.TypeString)
  9. var WorkShiftEffLst_Descr = grmi.NewField("Descr", "Descr", "descr", grmi.TypeString)
  10. var WorkShiftEffLst_PlanPersonUclQty = grmi.NewField("PlanPersonUclQty", "PlanPersonUclQty", "planpersonuclqty", grmi.TypeInt)
  11. var WorkShiftEffLst_PlanPersonLclQty = grmi.NewField("PlanPersonLclQty", "PlanPersonLclQty", "planpersonlclqty", grmi.TypeInt)
  12. var WorkShiftEffLst_PlanEfficiency = grmi.NewField("PlanEfficiency", "PlanEfficiency", "planefficiency", grmi.TypeFloat64)
  13. var WorkShiftEffLst_LastModify = grmi.NewField("LastModify", "LastModify", "undefined", grmi.TypeDateTime)
  14. var WorkShiftEffLst_LastUser = grmi.NewField("LastUser", "LastUser", "undefined", grmi.TypeString)
  15. var WorkShiftEffLst_CreateTime = grmi.NewField("CreateTime", "CreateTime", "undefined", grmi.TypeDateTime)
  16. //WorkShiftEffLst的元数据
  17. var WorkShiftEffLst = grmi.NewEntity(
  18. "WorkShiftEffLst",
  19. func() interface{} { return &model.WorkShiftEffLst{} },
  20. map[string]grmi.Field{
  21. WorkShiftEffLst_WorkShiftNr.Name: WorkShiftEffLst_WorkShiftNr,
  22. WorkShiftEffLst_LevelId.Name: WorkShiftEffLst_LevelId,
  23. WorkShiftEffLst_Descr.Name: WorkShiftEffLst_Descr,
  24. WorkShiftEffLst_PlanPersonUclQty.Name: WorkShiftEffLst_PlanPersonUclQty,
  25. WorkShiftEffLst_PlanPersonLclQty.Name: WorkShiftEffLst_PlanPersonLclQty,
  26. WorkShiftEffLst_PlanEfficiency.Name: WorkShiftEffLst_PlanEfficiency,
  27. WorkShiftEffLst_LastModify.Name: WorkShiftEffLst_LastModify,
  28. WorkShiftEffLst_LastUser.Name: WorkShiftEffLst_LastUser,
  29. WorkShiftEffLst_CreateTime.Name: WorkShiftEffLst_CreateTime,
  30. })