detect_item.go 494 B

123456789101112131415
  1. package entity
  2. type DetectItem struct {
  3. Id int `db:"id"`
  4. Name string `db:"name" json:"name"`
  5. Code string `db:"code"`
  6. Price float32 `db:"price"`
  7. MarketPrice float32 `db:"market_price"`
  8. Description string `db:"description"`
  9. Unit string `db:"unit"`
  10. RefValue string `db:"refValue"`
  11. AdviceOfHigh string `db:"adviceOfHigh"`
  12. AdviceOfLow string `db:"adviceOfLow"`
  13. AdviceOfNormal string `db:"adviceOfNormal"`
  14. }