B2cGoodsSpuInOnlineServiceImpl.java 589 B

12345678910111213141516171819
  1. package zs.payment.service.flymall.b2cgoodsspuinonline.impl;
  2. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  3. import lombok.extern.slf4j.Slf4j;
  4. import org.springframework.stereotype.Service;
  5. import zs.payment.entity.mysql.flymall.B2cGoodsSpuInOnline;
  6. import zs.payment.mapper.flymall.B2cGoodsSpuInOnlineMapper;
  7. import zs.payment.service.flymall.b2cgoodsspuinonline.B2cGoodsSpuInOnlineService;
  8. @Service
  9. @Slf4j
  10. public class B2cGoodsSpuInOnlineServiceImpl extends ServiceImpl<B2cGoodsSpuInOnlineMapper, B2cGoodsSpuInOnline> implements B2cGoodsSpuInOnlineService {
  11. }