1234567891011121314151617 |
- package com.xjrsoft.module.oa.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.github.yulichang.base.MPJBaseMapper;
- import com.xjrsoft.module.oa.entity.WfOaPush;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * @title: 公文发布
- * @Author fanxp
- * @Date: 2023-11-02
- * @Version 1.0
- */
- @Mapper
- public interface WfOaPushMapper extends BaseMapper<WfOaPush> {
- }
|