IntelligentRecognition/ah-jjsp-service/.svn/pristine/eb/eb741c7a6d738d584cd52139fb6...

22 lines
521 B
Plaintext

package com.sercurityControl.proteam.service.impl;
import com.sercurityControl.proteam.service.TyServiceTest;
import com.sercurityControl.proteam.util.TyVideoUtil;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
@Service("TyServiceTestImpl")
@Slf4j
public class TyServiceTestImpl implements TyServiceTest {
@Override
public void getAlgCodes() {
try{
TyVideoUtil.getAlgCodes();
}catch (Exception e){
log.error(e.toString());
}
}
}