|
@@ -140,8 +140,8 @@ public class TaPersonServiceImpl extends ServiceImpl<TaPersonMapper, TaPerson> i
|
140
|
140
|
|
141
|
141
|
//查看是否领取过授权积分
|
142
|
142
|
QueryWrapper<TaPointsRecords> taPointsRecordsQueryWrapper = new QueryWrapper<>();
|
|
143
|
+ taPointsRecordsQueryWrapper.eq("person_id", person.getPersonId());
|
143
|
144
|
taPointsRecordsQueryWrapper.eq("change_type",CommConstant.POINTS_AUTHORIZE);
|
144
|
|
- taPointsRecordsQueryWrapper.like("change_params","%\""+person.getPersonId()+"\"%");
|
145
|
145
|
List<TaPointsRecords> taPointsRecordsList = taPointsRecordsMapper.selectList(taPointsRecordsQueryWrapper);
|
146
|
146
|
if (taPointsRecordsList.size() < 0){
|
147
|
147
|
//发放积分
|