| package com.doumee.service.business; | 
|   | 
| import com.doumee.core.model.PageData; | 
| import com.doumee.core.model.PageWrap; | 
| import com.doumee.dao.business.model.WebParam; | 
| import com.doumee.dao.system.dto.UpdateWebParamDTO; | 
|   | 
| import java.util.List; | 
|   | 
| /** | 
|  * 企业页面配置信息表Service定义 | 
|  * @author 江蹄蹄 | 
|  * @since 2023/09/12 11:18 | 
|  */ | 
| public interface WebParamService { | 
|   | 
|     WebParam findOne(); | 
|     WebParam findOneNew(); | 
|   | 
|     void renew(UpdateWebParamDTO updateWebParamDTO); | 
|   | 
|     void renewUpdate(UpdateWebParamDTO updateWebParamDTO); | 
| } |