啊鑫
9 天以前 2c09b3c972c22a55351ed6e27fd8d1e7459967d2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.gs.xiaomi.service;
 
 
import lombok.RequiredArgsConstructor;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
 
@Service
@Transactional(rollbackFor = Exception.class)
@RequiredArgsConstructor
public class BCS101Service {
 
    private static final Logger log = LoggerFactory.getLogger(XM104Service.class);
}