| | |
| | | package com.dsh.account.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.dsh.account.dto.SelectDto; |
| | | import com.dsh.account.entity.TAppUser; |
| | | import com.dsh.account.model.query.appUserQuery.QueryAppUser; |
| | | import com.dsh.account.model.vo.QueryAppUserVO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | |
| | | /** |
| | |
| | | * @author administrator |
| | | * @since 2023-06-14 |
| | | */ |
| | | @Mapper |
| | | public interface TAppUserMapper extends BaseMapper<TAppUser> { |
| | | |
| | | |
| | | /** |
| | | * 定时任务修改到期会员的状态 |
| | | */ |
| | | void membershipEnd(); |
| | | |
| | | List<QueryAppUserVO> listAll(@Param("query") QueryAppUser query); |
| | | |
| | | List<SelectDto> getSelects(@Param("studentIds") List<Integer> studentIds); |
| | | } |