增加音视频的service与dao,以及功能业务字典/功能配置域字典对象类与dao

This commit is contained in:
zhangwei
2018-05-17 15:33:30 +08:00
parent 11f91c0578
commit 69ac788a1c
9 changed files with 286 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package com.nis.web.dao;
import java.util.List;
import com.nis.domain.FunctionRegionDict;
@MyBatisDao
public interface FunctionRegionDictDao {
List<FunctionRegionDict> getListByFunctionId(Integer functionId);
}