| | |
| | | package com.mzl.flower.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.mzl.flower.dto.request.configParam.ParamGroupDTO; |
| | | import com.mzl.flower.dto.request.configParam.QueryConfigParamDTO; |
| | | import com.mzl.flower.dto.request.configParam.QueryConfigParamGroupDTO; |
| | | import com.mzl.flower.dto.response.configParam.ConfigParamGroupVO; |
| | | import com.mzl.flower.dto.response.configParam.ConfigParamVO; |
| | | import com.mzl.flower.entity.configParam.ConfigParamGroupDO; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | |
| | | public interface ConfigParamGroupService extends IService<ConfigParamGroupDO> { |
| | | |
| | | List<ConfigParamGroupDO> getList(QueryConfigParamDTO dto); |
| | | |
| | | |
| | | void saveConfigParamGroup(ParamGroupDTO dto); |
| | | |
| | | void updateConfigParamGroup(ParamGroupDTO dto); |
| | | |
| | | void deleteConfigParamGroup(Long id); |
| | | |
| | | Page<ConfigParamGroupVO> queryPage(QueryConfigParamGroupDTO dto, Page page); |
| | | } |