| | |
| | | import com.ruoyi.system.query.TAppUserQuery; |
| | | import com.ruoyi.system.service.TAppUserService; |
| | | import com.ruoyi.system.vo.TAppUserPageVo; |
| | | import org.springframework.beans.BeanUtils; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | |
| | | pageInfo.setRecords(list); |
| | | return pageInfo; |
| | | } |
| | | |
| | | @Override |
| | | public TAppUserPageVo pageAuditDetail(String id) { |
| | | TAppUser tAppUser = this.baseMapper.selectById(id); |
| | | TAppUserPageVo tAppUserPageVo = new TAppUserPageVo(); |
| | | BeanUtils.copyProperties(tAppUser, tAppUserPageVo); |
| | | return tAppUserPageVo; |
| | | } |
| | | } |