This commit is contained in:
lijiaqi 2024-05-14 11:49:59 +08:00
parent 250386b2fa
commit 3369921a01
1 changed files with 2 additions and 1 deletions

View File

@ -19,6 +19,7 @@ import com.ydool.oa.workFlow.data.entity.WorkFlowNotice;
import com.ydool.oa.workFlow.service.WorkFlowNoticeService; import com.ydool.oa.workFlow.service.WorkFlowNoticeService;
import com.ydool.system.entity.User; import com.ydool.system.entity.User;
import com.ydool.system.service.impl.UserServiceImpl; import com.ydool.system.service.impl.UserServiceImpl;
import com.ydool.system.wrapper.UserWrapper;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
@ -246,7 +247,7 @@ public class MeetingService extends BaseService<MeetingMapper, Meeting> {
.lambda() .lambda()
.in(User::getUserName, "沈佳峰", "屠勇", "王焕", "朱宗华", "王孟卓") .in(User::getUserName, "沈佳峰", "屠勇", "王焕", "朱宗华", "王孟卓")
); );
return AjaxResult.ok().data(userList); return AjaxResult.ok().data(UserWrapper.INSTANCE.toDto(userList));
} }
} }