Commit 0927e66b by 徐高华

Merge branch 'feature/xgh/20250609' into 'master'

非空判断

See merge request !2967
parents 187e37dd f39c1890
......@@ -74,6 +74,9 @@ public class QwMomentController {
logger.info("查询活动列表={}", JSONObject.toJSONString(qo));
PlanListWxaQDTO qdto = EntityUtil.changeEntityByJSON(PlanListWxaQDTO.class,qo) ;
ClerkDTO clerk = this.clerkService.getclerkById(qo.getClerkId()) ;
if(null == clerk) {
return RestResponse.failure("9999","导购不存在或已删除") ;
}
if(0 != clerk.getClerkType()) {
qdto.setClerkId(null);
}
......
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