| | |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | public interface ChatUserMapper extends BaseMapper<ChatUser> { |
| | |
| | | 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<ChatUser> selectUserList(@Param("isRobot")int i,@Param("dateType") String type, @Param("date") Date date); |
| | | } |