22 lines
521 B
Plaintext
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());
|
|
}
|
|
}
|
|
}
|