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

package base
import (
"leit.com/LAPP_GAAS_GFrame/grmi"
model "leit.com/LAPP_GAAS_GFrame/models/base"
)
//WorkLineWorkShiftLst的字段元数据
var WorkLineWorkShiftLst_WorkLineId = grmi.NewField("WorkLineId", "WorkLineId", "worklineid", grmi.TypeString)
var WorkLineWorkShiftLst_WorkDay = grmi.NewField("WorkDay", "WorkDay", "workday", grmi.TypeString)
var WorkLineWorkShiftLst_Pos = grmi.NewField("Pos", "Pos", "pos", grmi.TypeInt)
var WorkLineWorkShiftLst_WorkShiftNr = grmi.NewField("WorkShiftNr", "WorkShiftNr", "workshiftnr", grmi.TypeInt)
var WorkLineWorkShiftLst_LevelId = grmi.NewField("LevelId", "LevelId", "levelid", grmi.TypeString)
var WorkLineWorkShiftLst_LastModify = grmi.NewField("LastModify", "LastModify", "undefined", grmi.TypeDateTime)
var WorkLineWorkShiftLst_LastUser = grmi.NewField("LastUser", "LastUser", "undefined", grmi.TypeString)
var WorkLineWorkShiftLst_CreateTime = grmi.NewField("CreateTime", "CreateTime", "undefined", grmi.TypeDateTime)
//WorkLineWorkShiftLst的元数据
var WorkLineWorkShiftLst = grmi.NewEntity(
"WorkLineWorkShiftLst",
func() interface{} { return &model.WorkLineWorkShiftLst{} },
map[string]grmi.Field{
WorkLineWorkShiftLst_WorkLineId.Name: WorkLineWorkShiftLst_WorkLineId,
WorkLineWorkShiftLst_WorkDay.Name: WorkLineWorkShiftLst_WorkDay,
WorkLineWorkShiftLst_Pos.Name: WorkLineWorkShiftLst_Pos,
WorkLineWorkShiftLst_WorkShiftNr.Name: WorkLineWorkShiftLst_WorkShiftNr,
WorkLineWorkShiftLst_LevelId.Name: WorkLineWorkShiftLst_LevelId,
WorkLineWorkShiftLst_LastModify.Name: WorkLineWorkShiftLst_LastModify,
WorkLineWorkShiftLst_LastUser.Name: WorkLineWorkShiftLst_LastUser,
WorkLineWorkShiftLst_CreateTime.Name: WorkLineWorkShiftLst_CreateTime,
})