UsersServiceImpl.java
465 Bytes
package com.cnlive.shenhe.serviceImpl;
import com.cnlive.shenhe.mapper.ShyUsersMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
/**
* @Auther: 周伟鹏
* @Date: 2018/11/29 14:23
* @Description:
*/
@Service
public class UsersServiceImpl {
@Autowired
ShyUsersMapper shyUsersMapper;
public Object getAll(Integer id){
return shyUsersMapper.selectByPrimaryKey(id);
}
}