queue_notice.go 666 B

12345678910111213141516
  1. package entity
  2. import "gopkg.in/guregu/null.v3"
  3. type QueueNotice struct {
  4. Id uint `db:"id" json:"id"`
  5. OrderId string `db:"order_id" json:"order_id"`
  6. Company string `db:"company" json:"company"`
  7. Name string `db:"name" json:"name"`
  8. CustomMobile string `db:"custom_mobile" json:"custom_mobile"`
  9. Product string `db:"product" json:"product"`
  10. OnSiteDate string `db:"onsitedate" json:"on_site_date"`
  11. IsAllNotice string `db:"isallnotice" json:"is_all_notice"`
  12. AllSentTime null.String `db:"all_sent_time" json:"all_sent_time"`
  13. Address null.String `db:"address" json:"address"`
  14. }