| 12345678910111213141516171819 |
- package zs.payment.service.flymall.b2cgoodsspuinonline.impl;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- import lombok.extern.slf4j.Slf4j;
- import org.springframework.stereotype.Service;
- import zs.payment.entity.mysql.flymall.B2cGoodsSpuInOnline;
- import zs.payment.mapper.flymall.B2cGoodsSpuInOnlineMapper;
- import zs.payment.service.flymall.b2cgoodsspuinonline.B2cGoodsSpuInOnlineService;
- @Service
- @Slf4j
- public class B2cGoodsSpuInOnlineServiceImpl extends ServiceImpl<B2cGoodsSpuInOnlineMapper, B2cGoodsSpuInOnline> implements B2cGoodsSpuInOnlineService {
- }
|