jiangqs
2023-04-20 437a8ae4bcca79e8886662a40c11f499fea1a25e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.hrt.system.service.impl;
 
import com.hrt.system.domain.poji.coupon.CouponRelGoods;
import com.hrt.system.mapper.coupon.CouponRelGoodsMapper;
import com.hrt.system.service.coupon.CouponRelGoodsService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 优惠券商品关联 服务实现类
 * </p>
 *
 * @author jqs
 * @since 2023-04-18
 */
@Service
public class CouponRelGoodsServiceImpl extends ServiceImpl<CouponRelGoodsMapper, CouponRelGoods> implements CouponRelGoodsService {
 
}