| | |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | public interface ChatUserMapper extends BaseMapper<ChatUser> { |
| | | |
| | | IPage<AdminChatUserVo> selectUserListInPage(Page<AdminChatUserVo> page, @Param("record")ChatUser chatUser); |
| | | |
| | | IPage<AdminChatUserPerkVo> selectUserPerkListInPage(Page<AdminChatUserPerkVo> page, @Param("record")ChatUser chatUser); |
| | | |
| | | ChatUser selectByUserId(@Param("userId")String userId); |
| | | |
| | |
| | | IPage<AdminRedBagVo> selectRedBagListInPage(Page<AdminRedBagVo> page, @Param("record")ChatUser chatUser); |
| | | |
| | | void updateCreateGroupByUserId(@Param("userId")String userId, @Param("createGroup")int i); |
| | | |
| | | void updateNicknameById(@Param("userId")Long userId, @Param("nickName")String i); |
| | | |
| | | List<ChatUser> selectListByIsRobot(@Param("isRobot")int i); |
| | | |
| | | BigDecimal selectTotalAmount(); |
| | | |
| | | BigDecimal selectTotalType(@Param("type")int i,@Param("dateType") String type, @Param("date") Date date); |
| | | |
| | | List<AdminChatRedBagVo> selectListByMsgType(@Param("userId")Long userId,@Param("msgType")String msgType, @Param("date") Date date); |
| | | |
| | | List<ChatUser> selectUserList(@Param("isRobot")int i,@Param("dateType") String type, @Param("date") Date date); |
| | | |
| | | List<AdminChatRedBagVo> selectByOverDueStatueAndTime(@Param("overdueState")Integer overdueState, @Param("overdueTime")Date overdueTime); |
| | | |
| | | void updateOverdueStatusById(@Param("overdueState")Integer overdueState, @Param("id")Long id); |
| | | } |