| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.vci.ubcs.code.entity.DockingPreViewModel; |
| | | import com.vci.ubcs.code.vo.pagemodel.DockingPreViewModelVO; |
| | | |
| | | import java.util.List; |
| | | |
| | | /*** |
| | | * 集团分类模型服务 |
| | |
| | | * @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); |
| | | } |