TTInfoBxDetailServiceImpl.java 600 Bytes
package com.bsth.service.schedule.impl;

import com.bsth.entity.schedule.TTInfoBxDetail;
import com.bsth.service.schedule.TTInfoBxDetailService;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Isolation;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;

@Service
@Transactional(propagation = Propagation.REQUIRED, isolation = Isolation.READ_COMMITTED)
public class TTInfoBxDetailServiceImpl extends BServiceImpl<TTInfoBxDetail, Long> implements TTInfoBxDetailService {

}