13 lines
316 B
Go
13 lines
316 B
Go
|
|
package model
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
// Target 目标曲线
|
||
|
|
type Target struct {
|
||
|
|
ID int `json:"id"`
|
||
|
|
Label string `json:"label"`
|
||
|
|
ReadCSV BoolInt `json:"readCsv"`
|
||
|
|
File *string `json:"file,omitempty"`
|
||
|
|
BassBoost *string `json:"bassBoost,omitempty"`
|
||
|
|
CreateAt time.Time `json:"createAt"`
|
||
|
|
}
|