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

51 lines
2.6 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 : WorkLineWorkShiftLst的字段元数据
  10. *
  11. * @Author : 代码生成器创建
  12. *
  13. * @Date : 2021-04-22 16:01:03
  14. *
  15. ******************************************************************************/
  16. var WorkLineWorkShiftLst_PlantNr = grmi.NewField("PlantNr", "WorkLineWorkShiftLst.PlantNr", "plantnr", grmi.TypeInt)
  17. var WorkLineWorkShiftLst_WorkLineId = grmi.NewField("WorkLineId", "WorkLineWorkShiftLst.WorkLineId", "worklineid", grmi.TypeString)
  18. var WorkLineWorkShiftLst_WorkDay = grmi.NewField("WorkDay", "WorkLineWorkShiftLst.WorkDay", "workday", grmi.TypeString)
  19. var WorkLineWorkShiftLst_WorkShiftNr = grmi.NewField("WorkShiftNr", "WorkLineWorkShiftLst.WorkShiftNr", "workshiftnr", grmi.TypeInt)
  20. var WorkLineWorkShiftLst_PersonQty = grmi.NewField("PersonQty", "WorkLineWorkShiftLst.PersonQty", "personqty", grmi.TypeInt)
  21. var WorkLineWorkShiftLst_LastModify = grmi.NewField("LastModify", "WorkLineWorkShiftLst.LastModify", "lastmodify", grmi.TypeDateTime)
  22. var WorkLineWorkShiftLst_LastUser = grmi.NewField("LastUser", "WorkLineWorkShiftLst.LastUser", "lastuser", grmi.TypeString)
  23. var WorkLineWorkShiftLst_CreateTime = grmi.NewField("CreateTime", "WorkLineWorkShiftLst.CreateTime", "createtime", grmi.TypeDateTime)
  24. /******************************************************************************
  25. *
  26. * @Description : WorkLineWorkShiftLst的元数据
  27. *
  28. * @Author : 代码生成器创建
  29. *
  30. * @Date : 2021-04-22 16:01:03
  31. *
  32. ******************************************************************************/
  33. var WorkLineWorkShiftLst = grmi.NewEntity(
  34. "WorkLineWorkShiftLst",
  35. func() interface{} { return &model.WorkLineWorkShiftLst{} },
  36. map[string]grmi.Field{
  37. WorkLineWorkShiftLst_PlantNr.Name: WorkLineWorkShiftLst_PlantNr,
  38. WorkLineWorkShiftLst_WorkLineId.Name: WorkLineWorkShiftLst_WorkLineId,
  39. WorkLineWorkShiftLst_WorkDay.Name: WorkLineWorkShiftLst_WorkDay,
  40. WorkLineWorkShiftLst_WorkShiftNr.Name: WorkLineWorkShiftLst_WorkShiftNr,
  41. WorkLineWorkShiftLst_PersonQty.Name: WorkLineWorkShiftLst_PersonQty,
  42. WorkLineWorkShiftLst_LastModify.Name: WorkLineWorkShiftLst_LastModify,
  43. WorkLineWorkShiftLst_LastUser.Name: WorkLineWorkShiftLst_LastUser,
  44. WorkLineWorkShiftLst_CreateTime.Name: WorkLineWorkShiftLst_CreateTime,
  45. },
  46. []string{"PlantNr"},
  47. []string{"PersonQty", "LastUser"})