Commit 4bc9dbaeb0accaa8846419a9f370c8bca467674c
1 parent
0c12eba7
小修正,删除多余的controller和service
Showing
2 changed files
with
0 additions
and
27 deletions
src/main/java/com/bsth/controller/schedule/core/TTInfoBxDetailController.java deleted
100644 → 0
| 1 | -package com.bsth.controller.schedule.core; | |
| 2 | - | |
| 3 | -import com.bsth.controller.schedule.BController; | |
| 4 | -import com.bsth.entity.schedule.TTInfoBxDetail; | |
| 5 | -import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; | |
| 6 | -import org.springframework.web.bind.annotation.RequestMapping; | |
| 7 | -import org.springframework.web.bind.annotation.RestController; | |
| 8 | - | |
| 9 | -@RestController | |
| 10 | -@ConditionalOnMissingBean(TTInfoBxDetailController_facade.class) | |
| 11 | -@RequestMapping("tibxdc") | |
| 12 | -public class TTInfoBxDetailController extends BController<TTInfoBxDetail, Long> { | |
| 13 | -} |
src/main/java/com/bsth/service/schedule/TTInfoBxDetailServiceImpl.java deleted
100644 → 0
| 1 | -package com.bsth.service.schedule; | |
| 2 | - | |
| 3 | -import com.bsth.entity.schedule.TTInfoBxDetail; | |
| 4 | -import com.bsth.service.schedule.impl.BServiceImpl; | |
| 5 | -import org.springframework.stereotype.Service; | |
| 6 | -import org.springframework.transaction.annotation.Isolation; | |
| 7 | -import org.springframework.transaction.annotation.Propagation; | |
| 8 | -import org.springframework.transaction.annotation.Transactional; | |
| 9 | - | |
| 10 | -@Service | |
| 11 | -@Transactional(propagation = Propagation.REQUIRED, isolation = Isolation.READ_COMMITTED) | |
| 12 | -public class TTInfoBxDetailServiceImpl extends BServiceImpl<TTInfoBxDetail, Long> implements TTInfoBxDetailService { | |
| 13 | - | |
| 14 | -} |