| | |
| | | package com.gkhy.system.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.gkhy.system.domain.ApplyRecord; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 开启申请记录Mapper接口 |
| | |
| | | * @author expert |
| | | * @date 2024-11-13 |
| | | */ |
| | | public interface ApplyRecordMapper |
| | | public interface ApplyRecordMapper extends BaseMapper<ApplyRecord> |
| | | { |
| | | /** |
| | | * 查询开启申请记录 |
| | |
| | | /** |
| | | * 查询开启申请记录列表 |
| | | * |
| | | * @param applyRecord 开启申请记录 |
| | | * @return 开启申请记录集合 |
| | | */ |
| | | public List<ApplyRecord> selectApplyRecordList(ApplyRecord applyRecord); |
| | | public List<ApplyRecord> selectApplyRecordList(); |
| | | |
| | | /** |
| | | * 新增开启申请记录 |