|
@@ -3,10 +3,12 @@ package com.zhongzheng.modules.user.mapper;
|
|
import com.baomidou.mybatisplus.annotation.InterceptorIgnore;
|
|
import com.baomidou.mybatisplus.annotation.InterceptorIgnore;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.zhongzheng.modules.user.bo.RanKingUserQuery;
|
|
import com.zhongzheng.modules.user.bo.RanKingUserQuery;
|
|
|
|
+import com.zhongzheng.modules.user.bo.UserBusinessGoodsBo;
|
|
import com.zhongzheng.modules.user.bo.UserQueryBo;
|
|
import com.zhongzheng.modules.user.bo.UserQueryBo;
|
|
import com.zhongzheng.modules.user.bo.UserStudyRecordQueryBo;
|
|
import com.zhongzheng.modules.user.bo.UserStudyRecordQueryBo;
|
|
import com.zhongzheng.modules.user.domain.User;
|
|
import com.zhongzheng.modules.user.domain.User;
|
|
import com.zhongzheng.modules.user.vo.RanKingUser;
|
|
import com.zhongzheng.modules.user.vo.RanKingUser;
|
|
|
|
+import com.zhongzheng.modules.user.vo.UserBusinessGoodsVo;
|
|
import com.zhongzheng.modules.user.vo.UserStudyRecordVo;
|
|
import com.zhongzheng.modules.user.vo.UserStudyRecordVo;
|
|
import org.apache.ibatis.annotations.Param;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
@@ -87,6 +89,12 @@ public interface UserMapper extends BaseMapper<User> {
|
|
@InterceptorIgnore(tenantLine = "true")
|
|
@InterceptorIgnore(tenantLine = "true")
|
|
User getByCardNoTenant(String idCard);
|
|
User getByCardNoTenant(String idCard);
|
|
|
|
|
|
|
|
+ @InterceptorIgnore(tenantLine = "true")
|
|
|
|
+ User getByCardTenant(@Param("idCard") String idCard,@Param("tenantId")String tenantId);
|
|
|
|
+
|
|
@InterceptorIgnore(tenantLine = "true")
|
|
@InterceptorIgnore(tenantLine = "true")
|
|
Long getFistStudyTime(@Param("userId")Long userId,@Param("tenantId")Long tenantId,@Param("businessName")String businessName);
|
|
Long getFistStudyTime(@Param("userId")Long userId,@Param("tenantId")Long tenantId,@Param("businessName")String businessName);
|
|
|
|
+
|
|
|
|
+ @InterceptorIgnore(tenantLine = "true")
|
|
|
|
+ UserBusinessGoodsVo getCourseByUser(UserBusinessGoodsBo item);
|
|
}
|
|
}
|