18 lines
369 B
Plaintext
18 lines
369 B
Plaintext
package ${package}.dao.${moduleName};
|
|
|
|
import ${package}.entity.${moduleName}.${className}Entity;
|
|
import com.baomidou.mybatisplus.mapper.BaseMapper;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
/**
|
|
* ${comments}
|
|
*
|
|
* @author ${author}
|
|
* @email ${email}
|
|
* @date ${datetime}
|
|
*/
|
|
@Mapper
|
|
public interface ${className}Dao extends BaseMapper<${className}Entity> {
|
|
|
|
}
|