mirror of
https://gitee.com/elegant_wings/xiongan-meeting.git
synced 2025-06-22 00:19:37 +08:00
16 lines
313 B
Java
16 lines
313 B
Java
![]() |
package com.ics.admin.mapper;
|
||
|
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
import com.ics.admin.domain.Policy;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
||
|
/**
|
||
|
* 政策管理Mapper接口
|
||
|
*
|
||
|
* @author ics
|
||
|
* @date 2021-03-23
|
||
|
*/
|
||
|
@Mapper
|
||
|
public interface PolicyMapper extends BaseMapper<Policy> {
|
||
|
}
|