123456789101112131415161718192021222324252627282930313233343536 |
- package entity
- import "gopkg.in/guregu/null.v3"
- type DeliverUser struct {
- Id uint64 `db:"id"`
- Name string `db:"name"`
- Age uint8 `db:"age"`
- Gender string `db:"gender"`
- Tel string `db:"tel"`
- Career string `db:"career"`
- Openid string `db:"openid"`
- HeadPic string `db:"head_pic"`
- Remark string `db:"remark"`
- Qualifiction []string `db:"-"`
- License []string `db:"-"`
- Photo []string `db:"-"`
- Address string `db:"address"`
- Education string `db:"education"`
- IdFront string `db:"id_front"`
- IdBack string `db:"id_back"`
- Company string `db:"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"`
- }
|