puzhibing
2023-08-04 624c9eec90d59297800f03276f8518daa1bd9f94
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.dsh.guns.modular.system.service;
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
 
import java.util.Map;
 
/**
 * @author zhibing.pu
 * @Date 2023/8/1 11:51
 */
public interface ICoursePackageService {
 
 
    /**
     * 获取列表数据
     * @param provinceCode
     * @param cityCode
     * @param coursePackageTypeId
     * @param name
     * @param status
     * @param state
     * @return
     */
    Page<Map<String, Object>> queryCoursePackageLists(String provinceCode, String cityCode, Integer coursePackageTypeId, Integer storeId, String name, Integer status, Integer state);
}