2026-06-01 19:08:43 +08:00
|
|
|
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"`
|
2026-06-04 19:39:08 +08:00
|
|
|
AddTime time.Time `json:"addTime"`
|
|
|
|
|
}
|