1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.ruoyi.system.service.impl;
|
| import lombok.RequiredArgsConstructor;
| import org.springframework.context.annotation.Lazy;
| import org.springframework.stereotype.Service;
|
| /**
| * @author mitao
| * @date 2025/3/19
| */
| @Service
| @RequiredArgsConstructor(onConstructor_ = {@Lazy})
| public class ScreenService {
|
| }
|
|