wuxw
2019-08-09 bf47d41dddf76c58a41692e492014499f9d433ae
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
package com.java110.store.rest;
 
import com.java110.core.base.controller.BaseController;
import com.java110.store.smo.IStoreServiceSMO;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
 
/**
 * 用户服务提供类
 * Created by wuxw on 2017/4/5.
 */
//@RestController
public class StoreServiceRest extends BaseController  {
 
    private final static Logger logger = LoggerFactory.getLogger(StoreServiceRest.class);
 
    @Autowired
    IStoreServiceSMO storeServiceSMOImpl;
 
 
 
 
    public IStoreServiceSMO getStoreServiceSMOImpl() {
        return storeServiceSMOImpl;
    }
 
    public void setStoreServiceSMOImpl(IStoreServiceSMO storeServiceSMOImpl) {
        this.storeServiceSMOImpl = storeServiceSMOImpl;
    }
}