1234567891011121314151617181920212223242526272829303132333435363738 |
- // Code generated by gorm.io/gen. DO NOT EDIT.
- // Code generated by gorm.io/gen. DO NOT EDIT.
- // Code generated by gorm.io/gen. DO NOT EDIT.
- package model
- import (
- "time"
- "gorm.io/gorm"
- )
- const TableNameSimulationTestRecord = "simulation_test_record"
- // SimulationTestRecord mapped from table <simulation_test_record>
- type SimulationTestRecord struct {
- ID string `gorm:"column:id;type:varchar(100);primaryKey" json:"id"`
- DeviceID string `gorm:"column:device_id;type:varchar(100);not null" json:"device_id"`
- DeviceName string `gorm:"column:device_name;type:varchar(100);not null" json:"device_name"`
- DeviceType string `gorm:"column:device_type;type:varchar(100);not null" json:"device_type"`
- AlgoImageName string `gorm:"column:algo_image_name;type:varchar(100);not null" json:"algo_image_name"`
- AlgoVersion string `gorm:"column:algo_version;type:varchar(50);not null" json:"algo_version"`
- PgmPath string `gorm:"column:pgm_path;type:varchar(255);not null" json:"pgm_path"`
- WorldPath string `gorm:"column:world_path;type:varchar(255);not null" json:"world_path"`
- TestBagPath string `gorm:"column:test_bag_path;type:varchar(255);not null" json:"test_bag_path"`
- TestDuration int32 `gorm:"column:test_duration;type:int(11);not null" json:"test_duration"`
- TestDistance int32 `gorm:"column:test_distance;type:int(11);not null" json:"test_distance"`
- AlgoEvaluationLevel string `gorm:"column:algo_evaluation_level;type:varchar(50);not null" json:"algo_evaluation_level"`
- AlgoEvaluationReport string `gorm:"column:algo_evaluation_report;type:varchar(100);not null" json:"algo_evaluation_report"`
- CreatedAt time.Time `gorm:"column:created_at;type:datetime;not null" json:"created_at"`
- UpdatedAt *time.Time `gorm:"column:updated_at;type:datetime" json:"updated_at"`
- DeletedAt gorm.DeletedAt `gorm:"column:deleted_at;type:datetime" json:"deleted_at"`
- }
- // TableName SimulationTestRecord's table name
- func (*SimulationTestRecord) TableName() string {
- return TableNameSimulationTestRecord
- }
|