UsersServiceImpl.java
654 Bytes
package com.cnlive.shenhe.serviceImpl;
import com.cnlive.shenhe.entity.ShyUsers;
import com.cnlive.shenhe.mapper.ShyUsersMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import tk.mybatis.mapper.entity.Example;
/**
* @Auther: 周伟鹏
* @Date: 2018/11/29 14:23
* @Description:
*/
@Service
public class UsersServiceImpl {
@Autowired
ShyUsersMapper shyUsersMapper;
public ShyUsers get(Integer id) {
return shyUsersMapper.selectByPrimaryKey(id);
}
public ShyUsers select(ShyUsers shyUsers) {
return shyUsersMapper.selectOne(shyUsers);
}
}