package com.ruoyi.goods.service.impl;
|
|
import com.ruoyi.goods.domain.pojo.GoodsFlavorType;
|
import com.ruoyi.goods.mapper.GoodsFlavorTypeMapper;
|
import com.ruoyi.goods.service.IGoodsFlavorTypeService;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* <p>
|
* 香型表 服务实现类
|
* </p>
|
*
|
* @author mitao
|
* @since 2024-05-16
|
*/
|
@Service
|
public class GoodsFlavorTypeServiceImpl extends ServiceImpl<GoodsFlavorTypeMapper, GoodsFlavorType> implements IGoodsFlavorTypeService {
|
|
}
|