k94314517
2023-09-14 45ab609a4bfee635162b8947380c858964c9be74
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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();
 
    void renew(UpdateWebParamDTO updateWebParamDTO);
}