13 changed files with 141 additions and 13 deletions
@ -0,0 +1,15 @@ |
|||
package com.ccsens.tcm.service; |
|||
|
|||
import lombok.extern.slf4j.Slf4j; |
|||
import org.springframework.stereotype.Service; |
|||
import org.springframework.transaction.annotation.Propagation; |
|||
import org.springframework.transaction.annotation.Transactional; |
|||
|
|||
/** |
|||
* @author 逗 |
|||
*/ |
|||
@Slf4j |
|||
@Service |
|||
@Transactional(propagation = Propagation.REQUIRED, rollbackFor = Exception.class) |
|||
public class ConferenceService implements IConferenceService{ |
|||
} |
@ -0,0 +1,4 @@ |
|||
package com.ccsens.tcm.service; |
|||
|
|||
public interface IConferenceService { |
|||
} |
Loading…
Reference in new issue