123456789101112131415161718192021222324252627282930313233343536 |
- package entity
- import "gopkg.in/guregu/null.v3"
- type DeliverUser struct {
- Id uint64 `db:"id"` //json:"id"`
- Name string `db:"name"` //json:"name"`
- Age uint8 `db:"age"` //json:"age"`
- Gender string `db:"gender"` //json:"gender"`
- Tel string `db:"tel"` //json:"tel"`
- Career string `db:"career"` //json:"career"`
- Openid string `db:"openid"`
- HeadPic string `db:"head_pic"` //json:"head_pic"`
- Remark string `db:"remark"` //json:"remark"`
- Qualifiction []string `db:"-"` //json:"qualifiction"`
- License []string `db:"-"`
- Photo []string `db:"-"`
- Address string `db:"address"` // json:"address"`
- Education string `db:"education"` // json:"education"`
- IdFront string `db:"id_front"` //json:"id_front"`
- IdBack string `db:"id_back"` //json:"id_back"`
- Company string `db:"company"` //json:"company"`
- Birthday string `db:"birthday"`
- CreateAt string `db:"create_at"`
- Vcode string `db:"-"`
- ProcessState string `db:"process_staus"`
- Grade string `db:"grade"`
- Reason null.String `db:"reason"`
- InviteBy string `db:"invite_by"`
- IsFetch string `db:"is_fetch"`
- ProvinceId null.Int `db:"province_id" json:"province_id"`
- CityId null.Int `db:"city_id" json:"city_id"`
- CountyId null.Int `db:"county_id" json:"county_id"`
- IsSkip string `db:"is_skip"`
- CertificateNo string `db:"certificate_no" json:"certificate_no"`
- }
|