package entity type JDUserInfo struct { Name string `json:"name" db:"name"` Erp string `json:"erp" db:"erp"` Gender string `json:"gender" db:"gender"` Type string `json:"type" db:"product_name"` Birthday string `json:"bithday" db:"birthday"` Address string `json:"address" db:"address"` AddrId int `json:"addr_id" db:"addr_id"` Mobile string `json:"mobile" db:"mobile"` IsMarried string `json:"is_married" db:"is_married"` IsAdmin string `json:"is_admin" db:"is_admin"` IsOlderThanThirty string `json:"is_older_than_thirty" db:"age"` HasBooked string `json:"has_booked" db:"-"` OrderStatus int `json:"order_status" db:"-"` OrderId string `json:"order_id" db:"-"` IsViewReport string `json:"is_view_report" db:"-"` }