package com.ks.goldcorn.service.remote;
|
|
import com.ks.goldcorn.pojo.DO.GoldCornAppInfo;
|
import com.ks.goldcorn.service.GoldCornAppManager;
|
import org.apache.dubbo.config.annotation.Service;
|
|
import javax.annotation.Resource;
|
|
@Service(version = "1.0" )
|
public class GoldCornAppServiceImpl implements GoldCornAppService {
|
|
@Resource
|
private GoldCornAppManager goldCornAppManager;
|
|
@Override
|
public GoldCornAppInfo selectByCode(String code) {
|
return goldCornAppManager.selectByAppCode(code);
|
}
|
}
|