aaa
doum
2026-06-08 3ac279c9df7181c9f21d35a689a321b990b87b22
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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);
 
    WebParam findOneAnchor();
 
    void renewAnchorUpdate(UpdateWebParamDTO updateWebParamDTO);
 
    void updateAnchorPageVersion(String anchorPageVersion);
}