15 lines
283 B
Java
Raw Normal View History

2020-12-28 16:34:06 +08:00
package com.ruoyi.winery.mapper;
2021-01-06 11:43:41 +08:00
import com.ruoyi.winery.domain.goods.GoodsMain;
2020-12-28 16:34:06 +08:00
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* 商品信息Mapper接口
*
* @author ruoyi
* @date 2020-12-28
*/
2021-01-06 11:43:41 +08:00
public interface GoodsMainMapper extends BaseMapper<GoodsMain> {
2020-12-28 16:34:06 +08:00
}