| | |
| | | */ |
| | | public interface CustomerMapper extends BaseMapper<Customer> { |
| | | |
| | | List<Long> getWorkerIdByLineStatusAndPostType(@Param("lineStatus") String lineStatus, @Param("postType") Integer postType, @Param("postId") Integer postId, @Param("workStatus") Integer workStatus); |
| | | List<Customer> randomWorkerByLineStatusAndPostNeWorkerId(@Param("lineStatus") String lineStatus, @Param("postType") Integer postType, @Param("postId") Integer postId, @Param("workStatus") Integer workStatus, @Param("eqWorkerIdList") List<Long> eqWorkerIdList, @Param("neWorkerIdList") List<Long> neWorkerIdList); |
| | | List<Long> getWorkerIdByLineStatusAndPostType( |
| | | @Param("lineStatus") String lineStatus, |
| | | @Param("postType") Integer postType, |
| | | @Param("postId") Integer postId, |
| | | @Param("workStatus") Integer workStatus |
| | | ); |
| | | List<Long> randomWorkerByLineStatusAndPostNeWorkerId( |
| | | @Param("lineStatus") String lineStatus, |
| | | @Param("postType") Integer postType, |
| | | @Param("postId") Integer postId, |
| | | @Param("workStatus") Integer workStatus, |
| | | @Param("mentalAnalysisStatus") Integer mentalAnalysisStatus, |
| | | @Param("eqWorkerIdList") List<Long> eqWorkerIdList, |
| | | @Param("neWorkerIdList") List<Long> neWorkerIdList |
| | | ); |
| | | |
| | | List<Customer> getWorkerListByLineStatusAndPostType(@Param("lineStatus") String lineStatus, @Param("postType") Integer postType, @Param("postId") Integer postId, @Param("workStatus") Integer workStatus); |
| | | List<Customer> getWorkerListByLineStatusAndPostType( |
| | | @Param("lineStatus") String lineStatus, |
| | | @Param("postType") Integer postType, |
| | | @Param("postId") Integer postId, |
| | | @Param("workStatus") Integer workStatus |
| | | ); |
| | | |
| | | Page<UserManagePageResponseDTO> getCustomerPage(@Param("page") Page<Object> page, @Param("userType") Integer userType, @Param("id") Long id, @Param("name") String name, @Param("telephone") String telephone, @Param("statusFlag") Integer statusFlag); |
| | | Page<UserManagePageResponseDTO> getCustomerPage( |
| | | @Param("page") Page<Object> page, |
| | | @Param("userType") Integer userType, |
| | | @Param("id") Long id, |
| | | @Param("name") String name, |
| | | @Param("telephone") String telephone, |
| | | @Param("statusFlag") Integer statusFlag |
| | | ); |
| | | |
| | | } |