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.

31 lines
1.7 KiB

  1. package base
  2. import (
  3. "leit.com/LAPP_GAAS_GFrame/grmi"
  4. model "leit.com/LAPP_GAAS_GFrame/models/base"
  5. )
  6. //WorkLineWorkShiftLst的字段元数据
  7. var WorkLineWorkShiftLst_WorkLineId = grmi.NewField("WorkLineId", "WorkLineId", "worklineid", grmi.TypeString)
  8. var WorkLineWorkShiftLst_WorkDay = grmi.NewField("WorkDay", "WorkDay", "workday", grmi.TypeString)
  9. var WorkLineWorkShiftLst_Pos = grmi.NewField("Pos", "Pos", "pos", grmi.TypeInt)
  10. var WorkLineWorkShiftLst_WorkShiftNr = grmi.NewField("WorkShiftNr", "WorkShiftNr", "workshiftnr", grmi.TypeInt)
  11. var WorkLineWorkShiftLst_LevelId = grmi.NewField("LevelId", "LevelId", "levelid", grmi.TypeString)
  12. var WorkLineWorkShiftLst_LastModify = grmi.NewField("LastModify", "LastModify", "undefined", grmi.TypeDateTime)
  13. var WorkLineWorkShiftLst_LastUser = grmi.NewField("LastUser", "LastUser", "undefined", grmi.TypeString)
  14. var WorkLineWorkShiftLst_CreateTime = grmi.NewField("CreateTime", "CreateTime", "undefined", grmi.TypeDateTime)
  15. //WorkLineWorkShiftLst的元数据
  16. var WorkLineWorkShiftLst = grmi.NewEntity(
  17. "WorkLineWorkShiftLst",
  18. func() interface{} { return &model.WorkLineWorkShiftLst{} },
  19. map[string]grmi.Field{
  20. WorkLineWorkShiftLst_WorkLineId.Name: WorkLineWorkShiftLst_WorkLineId,
  21. WorkLineWorkShiftLst_WorkDay.Name: WorkLineWorkShiftLst_WorkDay,
  22. WorkLineWorkShiftLst_Pos.Name: WorkLineWorkShiftLst_Pos,
  23. WorkLineWorkShiftLst_WorkShiftNr.Name: WorkLineWorkShiftLst_WorkShiftNr,
  24. WorkLineWorkShiftLst_LevelId.Name: WorkLineWorkShiftLst_LevelId,
  25. WorkLineWorkShiftLst_LastModify.Name: WorkLineWorkShiftLst_LastModify,
  26. WorkLineWorkShiftLst_LastUser.Name: WorkLineWorkShiftLst_LastUser,
  27. WorkLineWorkShiftLst_CreateTime.Name: WorkLineWorkShiftLst_CreateTime,
  28. })