liujie
2023-08-16 9d5309c820d525b46e65490475957b641707db51
1
2
3
4
5
6
7
8
9
10
11
package com.supersavedriving.user.modular.system.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.supersavedriving.user.modular.system.dao.CouponMapper;
import com.supersavedriving.user.modular.system.model.Coupon;
import com.supersavedriving.user.modular.system.service.ICouponService;
import org.springframework.stereotype.Service;
 
@Service
public class CouponServiceImpl extends ServiceImpl<CouponMapper, Coupon> implements ICouponService {
}