rank.go 343 Bytes
Newer Older
hujiebin's avatar
hujiebin committed
1 2 3 4 5 6 7 8 9 10 11
package cp_cv

import "hilo-user/cv/user_cv"

type CvCp struct {
	CpId    uint64              `json:"cpId"`    // cpId
	User1   *user_cv.CvUserBase `json:"user1"`   // user1
	User2   *user_cv.CvUserBase `json:"user2"`   // user2
	Score   uint32              `json:"score"`   // 分值
	Ranking int                 `json:"ranking"` // 排名
}