mirror of
https://github.com/Hello-hao/Tbed.git
synced 2024-04-21 12:32:10 +00:00
:art:完善部分新功能
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user