Commit cbef3cd9 authored by unset's avatar unset

会员分成记录信息

parent 91ddc467
......@@ -87,7 +87,7 @@ public class MemberShareRecordBiz extends BaseBiz<MemberShareRecordMapper, Membe
*/
public ObjectRestResponse<List<MemberShareRecord>> getAllRecord(Long userId) {
Example example = new Example(MemberShareRecord.class);
example.createCriteria().andLike("memberIds", "," + userId + ",");
example.createCriteria().andLike("memberIds", "%," + userId + ",%");
return ObjectRestResponse.succ(mapper.selectByExample(example));
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment