| | |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.example.erp.controller.dto.UserDTO; |
| | | import com.example.erp.entity.userInfo.User; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | |
| | | Boolean userDelete(Integer id); |
| | | |
| | | Boolean updatePassWordById(Integer id,String passWord); |
| | | |
| | | Boolean updateUserNameById(Integer id,String userName); |
| | | |
| | | Boolean updateProcessMp(Integer id, String process); |
| | | |
| | | List<User> findByAddress(String userName); |
| | | |
| | | String selectOptimizeParmsById(@Param("username") String username); |
| | | } |