puzhibing
2023-08-04 c5cb162b5cbdb589e97290fba3ac3e9241ec48d4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.dsh.course.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.dsh.course.entity.VersionManagement;
 
import java.util.Map;
 
public interface IVersionManagementService extends IService<VersionManagement> {
 
 
    /**
     * 获取最新版本数据
     * @return
     * @throws Exception
     */
    Map<String, Object> queryNewVersion(Integer type) throws Exception;
}