|
|
|
|
43
|
}
|
43
|
}
|
44
|
|
44
|
|
45
|
type InspectionReference struct {
|
45
|
type InspectionReference struct {
|
46
|
- ID int64 `gorm:"column:id" json:"id" form:"id"`
|
|
|
47
|
- OrgId int64 `gorm:"column:org_id" json:"org_id" form:"org_id"`
|
|
|
48
|
- ProjectName string `gorm:"column:project_name" json:"project_name" form:"project_name"`
|
|
|
49
|
- Project string `gorm:"column:project" json:"project" form:"project"`
|
|
|
50
|
- ProjectId int64 `gorm:"column:project_id" json:"project_id" form:"project_id"`
|
|
|
51
|
- ItemName string `gorm:"column:item_name" json:"item_name" form:"item_name"`
|
|
|
52
|
- ItemId string `gorm:"column:item_id" json:"item_id" form:"item_id"`
|
|
|
53
|
- SysItemId int64 `gorm:"column:sys_item_id" json:"sys_item_id" form:"sys_item_id"`
|
|
|
|
|
46
|
+ ID int64 `gorm:"column:id" json:"id" form:"id"`
|
|
|
47
|
+ OrgId int64 `gorm:"column:org_id" json:"org_id" form:"org_id"`
|
|
|
48
|
+ ProjectName string `gorm:"column:project_name" json:"project_name" form:"project_name"`
|
|
|
49
|
+ Project string `gorm:"column:project" json:"project" form:"project"`
|
|
|
50
|
+ ProjectId int64 `gorm:"column:project_id" json:"project_id" form:"project_id"`
|
|
|
51
|
+ ItemName string `gorm:"column:item_name" json:"item_name" form:"item_name"`
|
|
|
52
|
+ ItemId string `gorm:"column:item_id" json:"item_id" form:"item_id"`
|
|
|
53
|
+ SysItemId int64 `gorm:"column:sys_item_id" json:"sys_item_id" form:"sys_item_id"`
|
54
|
ItemNameAddition string `gorm:"column:item_name_addition" json:"item_name_addition" form:"item_name_addition"`
|
54
|
ItemNameAddition string `gorm:"column:item_name_addition" json:"item_name_addition" form:"item_name_addition"`
|
55
|
- Item string `gorm:"column:item" json:"item" form:"item"`
|
|
|
56
|
- RangeType int64 `gorm:"column:range_type" json:"range_type" form:"range_type"`
|
|
|
57
|
- RangeMin string `gorm:"column:range_min" json:"range_min" form:"range_min"`
|
|
|
58
|
- RangeMax string `gorm:"column:range_max" json:"range_max" form:"range_max"`
|
|
|
59
|
- RangeValue string `gorm:"column:range_value" json:"range_value" form:"range_value"`
|
|
|
60
|
- RangeOptions string `gorm:"column:range_options" json:"range_options" form:"range_options"`
|
|
|
61
|
- Unit string `gorm:"column:unit" json:"unit" form:"unit"`
|
|
|
62
|
- Status int64 `gorm:"column:status" json:"status" form:"status"`
|
|
|
63
|
- CreatedTime int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
|
|
|
64
|
- UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time" form:"updated_time"`
|
|
|
|
|
55
|
+ Item string `gorm:"column:item" json:"item" form:"item"`
|
|
|
56
|
+ RangeType int64 `gorm:"column:range_type" json:"range_type" form:"range_type"`
|
|
|
57
|
+ RangeMin string `gorm:"column:range_min" json:"range_min" form:"range_min"`
|
|
|
58
|
+ RangeMax string `gorm:"column:range_max" json:"range_max" form:"range_max"`
|
|
|
59
|
+ RangeValue string `gorm:"column:range_value" json:"range_value" form:"range_value"`
|
|
|
60
|
+ RangeOptions string `gorm:"column:range_options" json:"range_options" form:"range_options"`
|
|
|
61
|
+ Unit string `gorm:"column:unit" json:"unit" form:"unit"`
|
|
|
62
|
+ Status int64 `gorm:"column:status" json:"status" form:"status"`
|
|
|
63
|
+ CreatedTime int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
|
|
|
64
|
+ UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time" form:"updated_time"`
|
65
|
}
|
65
|
}
|
66
|
|
66
|
|
67
|
func (InspectionReference) TableName() string {
|
67
|
func (InspectionReference) TableName() string {
|