order_survey.go 448 B

1234567891011
  1. package entity
  2. import "gopkg.in/guregu/null.v3"
  3. type OrderSurvey struct {
  4. OrderId string `db:"order_id" json:"order_id"`
  5. ServiceScore string `db:"service_score" json:"service_score"`
  6. CustomerServiceScore null.String `db:"customer_service_score" json:"customer_service_score"`
  7. NurseScore string `db:"nurse_score" json:"nurse_score"`
  8. Advice null.String `db:"advice" json:"advice"`
  9. }