| | |
| | | package com.panzhihua.service_community.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.BeanUtils; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 防疫工作人员表(ComActAcidMember)表服务实现类 |
| | |
| | | BeanUtils.copyProperties(comActAcidMemberVO,comActAcidMember); |
| | | return R.ok(this.baseMapper.insert(comActAcidMember)); |
| | | } |
| | | |
| | | /** |
| | | * 根据relationName查询推送人员列表 |
| | | * @param relationName |
| | | * @return |
| | | */ |
| | | @Override |
| | | public R selectPushList(String relationName) { |
| | | return R.ok(this.baseMapper.selectPushList(relationName)); |
| | | } |
| | | } |