| 1234567891011121314151617 |
- package com.study.mall.dao;
- import com.study.mall.entity.BrandInfoEntity;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * 品牌信息
- *
- * @author codingliang
- * @email codingliang@gmail.com
- * @date 2023-09-01 09:43:35
- */
- @Mapper
- public interface BrandInfoDao extends BaseMapper<BrandInfoEntity> {
-
- }
|