wuxw7
2018-07-02 a0877c18fc2c064b5eaf43916e8d37a02ed4a083
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
package com.java110.store.rest;
 
import com.java110.core.base.controller.BaseController;
import com.java110.store.smo.IStoreServiceSMO;
import org.springframework.beans.factory.annotation.Autowired;
 
/**
 * 用户服务提供类
 * Created by wuxw on 2017/4/5.
 */
//@RestController
public class StoreServiceRest extends BaseController  {
 
    @Autowired
    IStoreServiceSMO storeServiceSMOImpl;
 
 
 
 
    public IStoreServiceSMO getStoreServiceSMOImpl() {
        return storeServiceSMOImpl;
    }
 
    public void setStoreServiceSMOImpl(IStoreServiceSMO storeServiceSMOImpl) {
        this.storeServiceSMOImpl = storeServiceSMOImpl;
    }
}