mirror of
https://gitee.com/elegant_wings/xiongan-meeting.git
synced 2025-06-22 00:19:37 +08:00
27 lines
517 B
Java
27 lines
517 B
Java
![]() |
package com.ics.admin.mapper;
|
||
|
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
import com.ics.admin.domain.ApplyPark;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 入园申请Mapper接口
|
||
|
*
|
||
|
* @author zzm
|
||
|
* @date 2021-04-12
|
||
|
*/
|
||
|
@Mapper
|
||
|
public interface ApplyParkMapper extends BaseMapper<ApplyPark> {
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 根据当前用户查询入园申请单
|
||
|
* @param createUserId
|
||
|
* @return
|
||
|
*/
|
||
|
List<ApplyPark> selectApplyParkByUSerId(Long createUserId);
|
||
|
|
||
|
}
|