|
// Copyright (c) Shenyang Leading Edge Intelligent Technology Co., Ltd. All rights reserved.
|
|
|
|
package pdc
|
|
|
|
import (
|
|
"LAPP_AS/grmi"
|
|
model "LAPP_AS/models/pdc"
|
|
)
|
|
|
|
/******************************************************************************
|
|
*
|
|
* @Description : ReportRecord的字段元数据
|
|
*
|
|
* @Author : 代码生成器创建
|
|
*
|
|
* @Date : 2021-08-20 14:06:46
|
|
*
|
|
******************************************************************************/
|
|
var ReportRecord_PlantNr = grmi.NewField("PlantNr", "[PDC_ReportRecord].PlantNr", "plantnr", grmi.TypeInt)
|
|
var ReportRecord_RecordNr = grmi.NewField("RecordNr", "[PDC_ReportRecord].RecordNr", "recordnr", grmi.TypeInt)
|
|
var ReportRecord_LastRecordUser = grmi.NewField("LastRecordUser", "[PDC_ReportRecord].LastRecordUser", "lastrecorduser", grmi.TypeString)
|
|
var ReportRecord_LastModify = grmi.NewField("LastModify", "[PDC_ReportRecord].LastModify", "lastmodify", grmi.TypeDateTime)
|
|
var ReportRecord_LastUser = grmi.NewField("LastUser", "[PDC_ReportRecord].LastUser", "lastuser", grmi.TypeString)
|
|
var ReportRecord_CreateTime = grmi.NewField("CreateTime", "[PDC_ReportRecord].CreateTime", "createtime", grmi.TypeDateTime)
|
|
|
|
/******************************************************************************
|
|
*
|
|
* @Description : ReportRecord的元数据
|
|
*
|
|
* @Author : 代码生成器创建
|
|
*
|
|
* @Date : 2021-08-20 14:06:46
|
|
*
|
|
******************************************************************************/
|
|
var ReportRecord = grmi.NewEntity(
|
|
"PDC_ReportRecord",
|
|
func() interface{} { return &model.ReportRecord{} },
|
|
map[string]grmi.Field{
|
|
ReportRecord_PlantNr.Name: ReportRecord_PlantNr,
|
|
ReportRecord_RecordNr.Name: ReportRecord_RecordNr,
|
|
ReportRecord_LastRecordUser.Name: ReportRecord_LastRecordUser,
|
|
ReportRecord_LastModify.Name: ReportRecord_LastModify,
|
|
ReportRecord_LastUser.Name: ReportRecord_LastUser,
|
|
ReportRecord_CreateTime.Name: ReportRecord_CreateTime,
|
|
},
|
|
[]string{"PlantNr"},
|
|
[]string{"LastRecordUser", "LastUser"})
|