4
hao
2025-04-16 c5fb1fbcbb2bf4d511773d348f9ef625855c61fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.system.console.service.internal;
 
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;
 
import com.system.console.service.ConsoleService;
 
 
@Service(value = "consoleService")
@Transactional(propagation = Propagation.REQUIRED)
public class ConsoleImpl implements ConsoleService {
 
}