package models import "database/sql" type Openid struct { Uid int `json:"uid"` PublicId string `json:"public_id"` Openid string `json:"openid"` Subscribe int `json:"subscribe"` } type AuthKey struct { Uid int `json:"uid"` AuthKey string `json:"auth_key"` AuthType string `json:"auth_type"` } type User struct { Uid int `json:"uid"` LoginAt int `json:"login_at"` School string `json:"school"` Sxo int `json:"sxo"` Age string `json:"age"` Address string `json:"address"` SupvipEndat int `json:"supvip_endat"` LoginAppPlatform string `json:"login_app_platform"` } type Partner struct { Id int `json:"id"` Uid int `json:"uid"` Home string `json:"home"` Address string `json:"address"` Sex int `json:"sex"` PhotoSrc sql.NullString `json:"photo_src"` Photo1 sql.NullString `json:"photo_1"` Photo2 sql.NullString `json:"photo_2"` Photo3 sql.NullString `json:"photo_3"` Photo4 sql.NullString `json:"photo_4"` Voice sql.NullString `json:"voice"` School string `json:"school"` Age string `json:"age"` Introduce string `json:"introduce"` Expect string `json:"expect"` Praises int `json:"praises"` FeedCnt int `json:"feed_cnt"` LastThreeDayFeed int `json:"last_three_day_feed"` FeedPushType int `json:"feed_push_type"` IsPushFeed int `json:"is_push_feed"` IsSelf int `json:"is_self"` CreatedAt int `json:"created_at"` UpdateAt int `json:"update_at"` UploadAt int `json:"upload"` FeedTagCnt int `json:"feed_tag_cnt"` FeedTagLike int `json:"feed_tag_like"` FeedPoolLevel string `json:"feed_pool_level"` WaitSelect int `json:"wait_select"` IsSelect int `json:"is_select"` } type NoticeManage struct { Uid int `json:"uid"` Key string `json:"key"` Group string `json:"group"` IsOpen int `json:"is_open"` } type PopularitySharehelp struct { Id int `json:"id"` CreatedAt int `json:"created_at"` ShareUid int `json:"share_uid"` HelpUid int `json:"help_uid"` EndAt int `json:"end_at"` HelpuidType int `json:"helpuid_type"` } type UserSystag struct { Uid int `json:"uid"` SupvipDats int `json:"supvip_dats"` LastBeSupvipAt int `json:"last_be_supvip_at"` SupvipEndAt int `json:"supvip_end_at"` NoticeSendCnt int `json:"notice_send_cnt"` LastSendNoticeAt int `json:"last_send_notice_at"` AfterNoticeLessHIntoCnt int `json:"after_notice_less_h_into_cnt"` PopularityShareEndAt int `json:"popularity_share_end_at"` } type UserState struct { Uid int `json:"uid"` Key string `json:"key"` Value string `json:"value"` } type MiniprogramFormid struct { Uid int `json:"uid"` CreatedAt int `json:"created_at"` State int `json:"state"` PublicId string `json:"public_id"` } type QQFormid struct { Appid string `json:"appid"` Openid string `json:"openid"` CreatedAt int `json:"created_at"` SendAt int `json:"send_at"` } type FpdxCardStateList struct { PartnerId int `json:"partner_id"` PushFpdx int8 `json:"push_fpdx"` PushSyj int8 `json:"push_syj"` IsMpPush int8 `json:"is_mp_push"` BaseScore int `json:"base_score"` }