chengf
2026-03-11 b88a288f4f787b509463678e3cd9ccfa3f37014b
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
30
31
32
33
34
35
36
37
38
39
package com.java110.api.components;
 
import com.java110.api.smo.dict.IDictServiceSMO;
import com.java110.core.context.IPageData;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Component;
 
/**
 * @ClassName CoreComponent
 * @Description TODO
 * @Author wuxw
 * @Date 2020/1/30 17:23
 * @Version 1.0
 * add by wuxw 2020/1/30
 **/
@Component("core")
public class CoreComponent {
    @Autowired
    private IDictServiceSMO dictServiceSMOImpl;
 
    /**
     * 查询活动列表
     *
     * @param pd 页面数据封装
     * @return 返回 ResponseEntity 对象
     */
    public ResponseEntity<String> list(IPageData pd) {
        return dictServiceSMOImpl.listDict(pd);
    }
 
    public IDictServiceSMO getDictServiceSMOImpl() {
        return dictServiceSMOImpl;
    }
 
    public void setDictServiceSMOImpl(IDictServiceSMO dictServiceSMOImpl) {
        this.dictServiceSMOImpl = dictServiceSMOImpl;
    }
}