对比新文件 |
| | |
| | | package com.gk.firework.Mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.gk.firework.Config.Oauth2.OauthRole; |
| | | import com.gk.firework.Domain.UserInfo; |
| | | import com.gk.firework.Domain.Vo.UserVo; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | @Repository |
| | | public interface UserInfoMapper extends BaseMapper<UserInfo> { |
| | | int deleteByPrimaryKey(Long id); |
| | | |
| | | UserInfo selectByPrimaryKey(Long id); |
| | | |
| | | int updateByPrimaryKeySelective(UserInfo record); |
| | | |
| | | int updateByPrimaryKey(UserInfo record); |
| | | |
| | | UserVo selectByLoginname(@Param("username") String username); |
| | | |
| | | List<OauthRole> selectRoleByUser(Integer userId); |
| | | |
| | | List<UserVo> selectUserDataGrid(Page<UserVo> page, Map<String, Object> record); |
| | | |
| | | List<UserInfo> selectUserInfo(@Param("id") Long id,@Param("username") String username); |
| | | |
| | | int deleteOneByCompanyId(@Param("companyId")Long companyId); |
| | | |
| | | UserInfo getOneByCompanyId(@Param("companyId")Long companyId); |
| | | |
| | | UserInfo selectSupervise(@Param("province") String province,@Param("city") String city,@Param("area") String district,@Param("town") String street,@Param("community") String committee); |
| | | |
| | | UserVo selectUserVoByName(@Param("username")String username); |
| | | |
| | | |
| | | int updateDeadlineByCompanyId(Long companyid, Date deadline); |
| | | |
| | | void updateDeadline2NullByComapnyId(Long companyid); |
| | | } |