增加音视频的service与dao,以及功能业务字典/功能配置域字典对象类与dao
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user