| | |
| | | package com.panzhihua.service_community.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.model.vos.community.microCommercialStreet.McsConfigVO; |
| | | import com.panzhihua.service_community.entity.McsConfig; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * (McsConfig)表服务接口 |
| | |
| | | */ |
| | | public interface McsConfigService extends IService<McsConfig> { |
| | | |
| | | /** |
| | | * 获取所有数字商业街配置 |
| | | * @return |
| | | */ |
| | | R getAllMcsConfig(); |
| | | |
| | | /** |
| | | * 修改数字商业街配置 |
| | | * @param configs |
| | | * @return |
| | | */ |
| | | R putMcsConfig(List<McsConfigVO> configs); |
| | | } |