| | |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.ruoyi.system.mapper.SysUserMapper; |
| | | import com.ruoyi.utils.result.Results; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import com.ruoyi.app.patrolplan.mapper.ArdAppPatroluserMapper; |
| | | import com.ruoyi.app.patrolplan.domain.ArdAppPatroluser; |
| | | import com.ruoyi.app.patrolplan.service.IArdAppPatroluserService; |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | | /** |
| | | * app巡检计划人员Service业务层处理 |
| | |
| | | public class ArdAppPatroluserServiceImpl implements IArdAppPatroluserService { |
| | | @Autowired |
| | | private ArdAppPatroluserMapper ardAppPatroluserMapper; |
| | | |
| | | @Resource |
| | | private SysUserMapper sysUserMapper; |
| | | |
| | | /** |
| | | * 查询app巡检计划人员 |
| | |
| | | public int deleteArdAppPatroluserById(String id) { |
| | | return ardAppPatroluserMapper.deleteArdAppPatroluserById(id); |
| | | } |
| | | |
| | | @Override |
| | | public Results userByPlanId(String id) { |
| | | return Results.succeed(sysUserMapper.userByPlanId(id)); |
| | | } |
| | | } |