|
@@ -36,11 +36,13 @@ type SyncLog struct {
|
|
|
// Client data
|
|
|
type ClientPriceUpdate struct {
|
|
|
Model
|
|
|
- CompanyId uint64 `json:"company_id"` // only used by FOS
|
|
|
- StationId uint64 `json:"station_id"` // only used by FOS
|
|
|
- PriceUpdateId uint64 `json:"price_update_id"`
|
|
|
- GradeId uint64 `json:"grade_id"`
|
|
|
- GradeText string `json:"grade_text"`
|
|
|
- GradePrice uint64 `json:"grade_price"`
|
|
|
- NewGradePrice uint64 `json:"new_grade_price"`
|
|
|
+ CompanyId uint64 `json:"company_id"` // only used by FOS
|
|
|
+ StationId uint64 `json:"station_id"` // only used by FOS
|
|
|
+ PriceUpdateId uint64 `json:"price_update_id"`
|
|
|
+ GradeId uint64 `json:"grade_id"`
|
|
|
+ GradeText string `json:"grade_text"`
|
|
|
+ GradePrice uint64 `json:"grade_price"`
|
|
|
+ NewGradePrice uint64 `json:"new_grade_price"`
|
|
|
+ RecCreatedAt time.Time `json:"rec_create_at"`
|
|
|
+ RecUpdatedAt time.Time `json:"rec_update_at"`
|
|
|
}
|