rank.go 329 Bytes
Newer Older
hujiebin's avatar
hujiebin committed
1 2 3 4 5
package cp_cv

import "hilo-user/cv/user_cv"

type CvCp struct {
hujiebin's avatar
hujiebin committed
6 7 8 9 10
	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"` // 排名
hujiebin's avatar
hujiebin committed
11
}