- package entity
- type DetectItem struct {
- Id int `db:"id"`
- Name string `db:"name" json:"name"`
- Code string `db:"code"`
- Price float32 `db:"price"`
- MarketPrice float32 `db:"market_price"`
- Description string `db:"description"`
- Unit string `db:"unit"`
- RefValue string `db:"refValue"`
- AdviceOfHigh string `db:"adviceOfHigh"`
- AdviceOfLow string `db:"adviceOfLow"`
- AdviceOfNormal string `db:"adviceOfNormal"`
- }
|