device_running_record.go
817 字节
package models
import (
"gitlab.fjmaimaimai.com/allied-creation/allied-creation-manufacture/pkg/domain"
"time"
)
type DeviceRunningRecord struct {
tableName string `comment:"设备运行记录" pg:"manufacture.device_running_record"`
// 设备运行记录ID
DeviceRunningRecordId int `comment:"设备运行记录ID" pg:"pk:device_running_record_id"`
// 企业id
CompanyId int `comment:"企业id"`
// 组织ID
OrgId int `comment:"组织ID"`
// 工作位置
WorkStation *domain.WorkStation `comment:"工作位置"`
// 设备Id
DeviceId int `comment:"设备Id"`
// 设备编号
DeviceCode string `comment:"设备编号"`
// 设备运行记录信息
DeviceRunningRecordInfo *domain.DeviceRunningData `comment:"设备运行记录信息"`
// 创建时间
CreatedAt time.Time `comment:"创建时间"`
}