jiangping
2023-10-13 5ec73adcca1d7f2b96c623cfdc66e309958ae2bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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);
}