jianghan 5 月之前
父節點
當前提交
1191ab83ed
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      service/clueInfoList.go

+ 2 - 0
service/clueInfoList.go

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