Commit 720b05aa by 徐高华

非空判断

parent 134dbe7d
......@@ -557,6 +557,10 @@ public class QwMomentPlanServiceImpl implements QwMomentPlanService {
private MomentResultDTO getData(String staffId , String momentId , WxEnterpriseQwDTO qwDTO) {
TabHaobanStaff staff = this.staffMapper.selectByPrimaryKey(staffId) ;
if(null == staff) {
logger.info("无员工={}",staffId);
return null ;
}
String wxUserId = staff.getWxUserId() ;
if(qwDTO.needOpenUserId3th()) {
wxUserId = staff.getWxOpenUseId() ;
......
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