hjl
2024-07-23 562699fa6d0c279fe0f4f81ce87c336a34a3fb91
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.order.service.impl;
 
import com.ruoyi.order.entity.DataDraw;
import com.ruoyi.order.mapper.DataDrawMapper;
import com.ruoyi.order.service.DataDrawService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 奖品管理 服务实现类
 * </p>
 *
 * @author hjl
 * @since 2024-07-18 16:34
 */
@Service
public class DataDrawServiceImpl extends ServiceImpl<DataDrawMapper, DataDraw> implements DataDrawService {
 
}