- package entity
- import "gopkg.in/guregu/null.v3"
- type OrderSurvey struct {
- OrderId string `db:"order_id" json:"order_id"`
- ServiceScore string `db:"service_score" json:"service_score"`
- CustomerServiceScore null.String `db:"customer_service_score" json:"customer_service_score"`
- NurseScore string `db:"nurse_score" json:"nurse_score"`
- Advice null.String `db:"advice" json:"advice"`
- }
|