苏州瑞玛APS项目web后台
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.

52 lines
2.4 KiB

// Copyright (c) Shenyang Leading Edge Intelligent Technology Co., Ltd. All rights reserved.
package base
import (
"leit.com/LAPP_CHEERSSON_BACKEND/grmi"
"xorm.io/core"
)
/******************************************************************************
*
* @Struct Name : WorkPlaceGrp
*-----------------------------------------------------------------------------
*
* @Description : WorkPlaceGrp的实体映射
*
* @Author : 代码生成器创建
*
* @Date : 2021-11-30 14:02:35
*
******************************************************************************/
type WorkPlaceGrp struct {
PlantNr int `xorm:"pk int 'PlantNr'" json:"WorkPlaceGrp-PlantNr"`
WorkPlaceGrpId string `xorm:"pk nvarchar(40) 'WorkPlaceGrpId'" json:"WorkPlaceGrp-WorkPlaceGrpId"`
WorkPlaceGrpType string `xorm:"nvarchar(40) 'WorkPlaceGrpType' not null" json:"WorkPlaceGrp-WorkPlaceGrpType"`
Descr string `xorm:"nvarchar(100) 'Descr' not null" json:"WorkPlaceGrp-Descr"`
WorkAreaId string `xorm:"nvarchar(40) 'WorkAreaId' not null" json:"WorkPlaceGrp-WorkAreaId"`
WeekModelNr int `xorm:"int 'WeekModelNr' not null" json:"WorkPlaceGrp-WeekModelNr"`
WorkCalendarNr int `xorm:"int 'WorkCalendarNr' not null" json:"WorkPlaceGrp-WorkCalendarNr"`
CostCenterId string `xorm:"nvarchar(40) 'CostCenterId' not null" json:"WorkPlaceGrp-CostCenterId"`
LastModify grmi.DateTime `xorm:"datetime 'LastModify' not null updated" json:"WorkPlaceGrp-LastModify"`
LastUser string `xorm:"nvarchar(20) 'LastUser' not null" json:"WorkPlaceGrp-LastUser"`
CreateTime grmi.DateTime `xorm:"datetime 'CreateTime' not null created" json:"WorkPlaceGrp-CreateTime"`
}
/******************************************************************************
*
* @Function Name : GetKey
*-----------------------------------------------------------------------------
*
* @Description : 获取实体的主键
*
* @Return Value : 实体的主键
*
* @Author : 代码生成器创建
*
* @Date : 2021-11-30 14:02:35
*
******************************************************************************/
func (self *WorkPlaceGrp) GetKey() core.PK {
return core.PK{self.PlantNr, self.WorkPlaceGrpId}
}