ludc
2023-08-02 2b436dd385bf7f5df9855b75cfb89b93eae1bf6e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.vci.ubcs.code.applyjtcodeservice.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.vci.ubcs.code.applyjtcodeservice.entity.DockingPreViewModel;
import com.vci.ubcs.code.applyjtcodeservice.vo.DockingPreViewModelVO;
 
import java.util.List;
 
/***
 * 集团分类模型服务
 * @author xiejun
 * @date 2023-05-23
 */
public interface IDockingPreViewModelService extends IService<DockingPreViewModel> {
    /**
     * 根据分类id查询分类视图
     * @param classifyId 集团分类id
     * @param isContainAttr 是否查询属性,true: 是,false,否
     * @return 返回分类模型视图集合对象
     */
    List<DockingPreViewModelVO> selectDockingPreViewModelByClassId(String classifyId, boolean isContainAttr);
}