28 lines
670 B
Java
28 lines
670 B
Java
|
|
package com.nis.web.service.configuration;
|
||
|
|
|
||
|
|
|
||
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
||
|
|
import org.springframework.stereotype.Service;
|
||
|
|
|
||
|
|
import com.nis.web.dao.FunctionRegionDictDao;
|
||
|
|
import com.nis.web.dao.FunctionServiceDictDao;
|
||
|
|
import com.nis.web.dao.configuration.AvCfgDao;
|
||
|
|
import com.nis.web.service.CrudService;
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 特定协议相关配置事务类
|
||
|
|
* @author dell
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
@Service
|
||
|
|
public class AvCfgService extends CrudService {
|
||
|
|
@Autowired
|
||
|
|
protected FunctionRegionDictDao functionRegionDictDao;
|
||
|
|
@Autowired
|
||
|
|
protected FunctionServiceDictDao functionServiceDictDao;
|
||
|
|
@Autowired
|
||
|
|
protected AvCfgDao avCfgDao;
|
||
|
|
|
||
|
|
}
|