DemoMapper.java 296 Bytes
Newer Older
吴泽佳's avatar
吴泽佳 committed
1
package com.tanpu.feo.feojob.mapper;
xd's avatar
xd committed
2 3 4 5 6 7 8 9 10 11 12

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.tanpu.feo.feojob.entity.DemoEntity;
import org.apache.ibatis.annotations.Mapper;

/**
 * created by xd on 2021/5/18
 */
@Mapper
public interface DemoMapper extends BaseMapper<DemoEntity> {
}