mirror of
https://github.com/Hello-hao/Tbed.git
synced 2024-04-21 12:32:10 +00:00
26 lines
662 B
Java
26 lines
662 B
Java
package cn.hellohao.service.impl;
|
|
|
|
import cn.hellohao.dao.AppClientMapper;
|
|
import cn.hellohao.pojo.AppClient;
|
|
import cn.hellohao.service.AppClientService;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
@Service
|
|
public class AppClientServiceImpl implements AppClientService {
|
|
|
|
@Autowired
|
|
AppClientMapper appClientMapper;
|
|
|
|
|
|
@Override
|
|
public AppClient getAppClientData(String id) {
|
|
return appClientMapper.getAppClientData(id);
|
|
}
|
|
|
|
@Override
|
|
public Integer editAppClientData(AppClient appClient) {
|
|
return appClientMapper.editAppClientData(appClient);
|
|
}
|
|
}
|