35 lines
844 B
Java
35 lines
844 B
Java
|
package com.zcloud.service.mkmj.impl;
|
|||
|
|
|||
|
import com.zcloud.entity.Page;
|
|||
|
import com.zcloud.entity.PageData;
|
|||
|
import com.zcloud.mapper.datasource.map.GateVideoMapper;
|
|||
|
import com.zcloud.service.mkmj.GateVideoService;
|
|||
|
import org.springframework.beans.factory.annotation.Autowired;
|
|||
|
import org.springframework.stereotype.Service;
|
|||
|
import org.springframework.transaction.annotation.Transactional;
|
|||
|
|
|||
|
import java.util.List;
|
|||
|
|
|||
|
/**
|
|||
|
* 说明:视频管理
|
|||
|
* 作者:luoxiaobao
|
|||
|
* 时间:2021-05-10
|
|||
|
* 官网:www.zcloudchina.com
|
|||
|
*/
|
|||
|
@Service
|
|||
|
@Transactional //开启事物
|
|||
|
public class GateVideoServiceImpl implements GateVideoService {
|
|||
|
|
|||
|
@Autowired
|
|||
|
private GateVideoMapper gateVideoMapper;
|
|||
|
|
|||
|
/**列表(全部)
|
|||
|
* @param pd
|
|||
|
* @throws Exception
|
|||
|
*/
|
|||
|
public List<PageData> listBo(PageData pd)throws Exception{
|
|||
|
return gateVideoMapper.listBo(pd);
|
|||
|
}
|
|||
|
}
|
|||
|
|