|
@@ -11,6 +11,7 @@ import (
|
|
|
|
|
|
type ClueInfo struct {
|
|
type ClueInfo struct {
|
|
Id int64 `json:"id"`
|
|
Id int64 `json:"id"`
|
|
|
|
+ Uid string `json:"uid"`
|
|
ClueName string `json:"cluename"`
|
|
ClueName string `json:"cluename"`
|
|
PositionId int64 `json:"position_id"`
|
|
PositionId int64 `json:"position_id"`
|
|
SeatNumber string `json:"seatNumber"`
|
|
SeatNumber string `json:"seatNumber"`
|
|
@@ -98,6 +99,7 @@ func CheckingList(in *pb.ClueInfoReq) *pb.BiReply {
|
|
func getClueInfo(tmp map[string]interface{}) *ClueInfo {
|
|
func getClueInfo(tmp map[string]interface{}) *ClueInfo {
|
|
clueInfo := &ClueInfo{
|
|
clueInfo := &ClueInfo{
|
|
Id: common.Int64All(tmp["id"]),
|
|
Id: common.Int64All(tmp["id"]),
|
|
|
|
+ Uid: common.ObjToString(tmp["uid"]),
|
|
ClueName: common.ObjToString(tmp["cluename"]),
|
|
ClueName: common.ObjToString(tmp["cluename"]),
|
|
SeatNumber: common.ObjToString(tmp["seatNumber"]),
|
|
SeatNumber: common.ObjToString(tmp["seatNumber"]),
|
|
CompanyNature: common.IntAll(tmp["COMPANY_NATURE"]),
|
|
CompanyNature: common.IntAll(tmp["COMPANY_NATURE"]),
|