| | |
| | | package com.ruoyi.system.service; |
| | | |
| | | import com.ruoyi.common.core.page.IServicePlus; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | import com.ruoyi.system.domain.SysPost; |
| | | |
| | |
| | | * |
| | | * @author ruoyi |
| | | */ |
| | | public interface ISysPostService extends IServicePlus<SysPost> { |
| | | public interface ISysPostService extends IService<SysPost> { |
| | | |
| | | |
| | | TableDataInfo<SysPost> selectPagePostList(SysPost post); |
| | |
| | | * @param postId 岗位ID |
| | | * @return 结果 |
| | | */ |
| | | public int countUserPostById(Long postId); |
| | | public long countUserPostById(Long postId); |
| | | |
| | | /** |
| | | * 删除岗位信息 |