|
|
- // Copyright (c) Shenyang Leading Edge Intelligent Technology Co., Ltd. All rights reserved.
-
- package base
-
- import (
- "leit.com/LAPP_CHEERSSON_BACKEND/grmi"
- model "leit.com/LAPP_CHEERSSON_BACKEND/models/base"
- )
-
- /******************************************************************************
- *
- * @Description : WorkPlaceGrp的字段元数据
- *
- * @Author : 代码生成器创建
- *
- * @Date : 2021-11-30 14:02:35
- *
- ******************************************************************************/
- var WorkPlaceGrp_PlantNr = grmi.NewField("PlantNr", "[WorkPlaceGrp].PlantNr", "plantnr", grmi.TypeInt)
- var WorkPlaceGrp_WorkPlaceGrpId = grmi.NewField("WorkPlaceGrpId", "[WorkPlaceGrp].WorkPlaceGrpId", "workplacegrpid", grmi.TypeString)
- var WorkPlaceGrp_WorkPlaceGrpType = grmi.NewField("WorkPlaceGrpType", "[WorkPlaceGrp].WorkPlaceGrpType", "workplacegrptype", grmi.TypeString)
- var WorkPlaceGrp_Descr = grmi.NewField("Descr", "[WorkPlaceGrp].Descr", "descr", grmi.TypeString)
- var WorkPlaceGrp_WorkAreaId = grmi.NewField("WorkAreaId", "[WorkPlaceGrp].WorkAreaId", "workareaid", grmi.TypeString)
- var WorkPlaceGrp_WeekModelNr = grmi.NewField("WeekModelNr", "[WorkPlaceGrp].WeekModelNr", "weekmodelnr", grmi.TypeInt)
- var WorkPlaceGrp_WorkCalendarNr = grmi.NewField("WorkCalendarNr", "[WorkPlaceGrp].WorkCalendarNr", "workcalendarnr", grmi.TypeInt)
- var WorkPlaceGrp_CostCenterId = grmi.NewField("CostCenterId", "[WorkPlaceGrp].CostCenterId", "costcenterid", grmi.TypeString)
- var WorkPlaceGrp_LastModify = grmi.NewField("LastModify", "[WorkPlaceGrp].LastModify", "lastmodify", grmi.TypeDateTime)
- var WorkPlaceGrp_LastUser = grmi.NewField("LastUser", "[WorkPlaceGrp].LastUser", "lastuser", grmi.TypeString)
- var WorkPlaceGrp_CreateTime = grmi.NewField("CreateTime", "[WorkPlaceGrp].CreateTime", "createtime", grmi.TypeDateTime)
-
- /******************************************************************************
- *
- * @Description : WorkPlaceGrp的元数据
- *
- * @Author : 代码生成器创建
- *
- * @Date : 2021-11-30 14:02:35
- *
- ******************************************************************************/
- var WorkPlaceGrp = grmi.NewEntity(
- "WorkPlaceGrp",
- func() interface{} { return &model.WorkPlaceGrp{} },
- map[string]grmi.Field{
- WorkPlaceGrp_PlantNr.Name: WorkPlaceGrp_PlantNr,
- WorkPlaceGrp_WorkPlaceGrpId.Name: WorkPlaceGrp_WorkPlaceGrpId,
- WorkPlaceGrp_WorkPlaceGrpType.Name: WorkPlaceGrp_WorkPlaceGrpType,
- WorkPlaceGrp_Descr.Name: WorkPlaceGrp_Descr,
- WorkPlaceGrp_WorkAreaId.Name: WorkPlaceGrp_WorkAreaId,
- WorkPlaceGrp_WeekModelNr.Name: WorkPlaceGrp_WeekModelNr,
- WorkPlaceGrp_WorkCalendarNr.Name: WorkPlaceGrp_WorkCalendarNr,
- WorkPlaceGrp_CostCenterId.Name: WorkPlaceGrp_CostCenterId,
- WorkPlaceGrp_LastModify.Name: WorkPlaceGrp_LastModify,
- WorkPlaceGrp_LastUser.Name: WorkPlaceGrp_LastUser,
- WorkPlaceGrp_CreateTime.Name: WorkPlaceGrp_CreateTime,
- },
- []string{"PlantNr"},
- []string{"WorkPlaceGrpType", "Descr", "WorkAreaId", "WeekModelNr", "WorkCalendarNr", "CostCenterId", "LastUser"})
|