123456789101112131415161718192021222324252627282930313233343536373839404142 |
- // 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 string `gorm:"column:test_duration;type:varchar(50);not null" json:"test_duration"`
- TestDistance string `gorm:"column:test_distance;type:varchar(50);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"`
- TestTime string `gorm:"column:test_time;type:varchar(50);not null" json:"test_time"`
- Round int32 `gorm:"column:round;type:int(11);not null" json:"round"`
- SceneID string `gorm:"column:scene_id;type:varchar(50);not null" json:"scene_id"`
- DeviceNo string `gorm:"column:device_no;type:varchar(100);not null" json:"device_no"`
- }
- // TableName SimulationTestRecord's table name
- func (*SimulationTestRecord) TableName() string {
- return TableNameSimulationTestRecord
- }
|