kongdeqiang
2023-04-28 df5cc553bde495f22757f0d6472a714a056a02d8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.boying.service.impl;
 
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.boying.entity.Barrier;
import com.boying.entity.EnterPark;
import com.boying.entity.LedShow;
import com.boying.mapper.BarrierMapper;
import com.boying.mapper.EnterParkMapper;
import com.boying.mapper.LedShowMapper;
import com.boying.service.BarrierService;
import com.boying.service.EnterParkService;
import com.boying.service.LedShowService;
import lombok.AllArgsConstructor;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
/**
 * @author kdq
 * @version 1.0.0
 * @ClassName LedShowServiceImpl.java
 * @Description TODO
 * @createTime 2022年11月21日 08:31:00
 */
@Service
@AllArgsConstructor
public class LedShowServiceImpl extends ServiceImpl<LedShowMapper, LedShow> implements LedShowService {
}