- package entity
- import "gopkg.in/guregu/null.v3"
- type QueueNotice struct {
- Id uint `db:"id" json:"id"`
- OrderId string `db:"order_id" json:"order_id"`
- Company string `db:"company" json:"company"`
- Name string `db:"name" json:"name"`
- CustomMobile string `db:"custom_mobile" json:"custom_mobile"`
- Product string `db:"product" json:"product"`
- OnSiteDate string `db:"onsitedate" json:"on_site_date"`
- IsAllNotice string `db:"isallnotice" json:"is_all_notice"`
- AllSentTime null.String `db:"all_sent_time" json:"all_sent_time"`
- Address null.String `db:"address" json:"address"`
- }
|