|
@@ -901,7 +901,7 @@ func GetPersonInfo(entId, entUserId int64, participateMap map[int64]bool) []*bxc
|
|
id := MC.Int64All(v["id"])
|
|
id := MC.Int64All(v["id"])
|
|
userId := strconv.FormatInt(MC.Int64All(v["user_id"]), 10)
|
|
userId := strconv.FormatInt(MC.Int64All(v["user_id"]), 10)
|
|
user := &bxcore.ParticipatePerson{
|
|
user := &bxcore.ParticipatePerson{
|
|
- Id: encrypt.SE.Encode2Hex(userId),
|
|
|
|
|
|
+ Id: encrypt.SE.Encode2HexByCheck(userId),
|
|
Power: MC.Int64All(v["user_power"]),
|
|
Power: MC.Int64All(v["user_power"]),
|
|
Name: MC.ObjToString(v["user_name"]),
|
|
Name: MC.ObjToString(v["user_name"]),
|
|
Phone: MC.ObjToString(v["user_phone"]),
|
|
Phone: MC.ObjToString(v["user_phone"]),
|
|
@@ -919,7 +919,7 @@ func GetPersonInfo(entId, entUserId int64, participateMap map[int64]bool) []*bxc
|
|
} else {
|
|
} else {
|
|
seId := strconv.FormatInt(id, 10)
|
|
seId := strconv.FormatInt(id, 10)
|
|
list = append(list, &bxcore.ParticipatePerson{
|
|
list = append(list, &bxcore.ParticipatePerson{
|
|
- Id: encrypt.SE.Encode2Hex(seId),
|
|
|
|
|
|
+ Id: encrypt.SE.Encode2HexByCheck(seId),
|
|
Name: MC.ObjToString(v["name"]),
|
|
Name: MC.ObjToString(v["name"]),
|
|
Pid: MC.Int64All(v["pid"]),
|
|
Pid: MC.Int64All(v["pid"]),
|
|
Users: []*bxcore.ParticipatePerson{user},
|
|
Users: []*bxcore.ParticipatePerson{user},
|