| | |
| | | package com.vci.frameworkcore.compatibility; |
| | | |
| | | import com.vci.dto.SmUserDTO; |
| | | import com.vci.corba.common.PLException; |
| | | import com.vci.frameworkcore.model.dto.SmUserDTO; |
| | | import com.vci.frameworkcore.pagemodel.SmUserVO; |
| | | import com.vci.pagemodel.SmUserVO; |
| | | import com.vci.starter.web.exception.VciBaseException; |
| | | import com.vci.starter.web.pagemodel.*; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.File; |
| | | import java.util.Collection; |
| | | import java.util.List; |
| | |
| | | */ |
| | | List<Tree> refTreeUsers(TreeQueryObject treeQueryObject) throws VciBaseException; |
| | | |
| | | /*** |
| | | * 人员权限选择树 |
| | | * @param treeQueryObject |
| | | * @return |
| | | * @throws VciBaseException |
| | | */ |
| | | List<Tree> refPersonOrgTree(TreeQueryObject treeQueryObject) throws VciBaseException; |
| | | |
| | | |
| | | /** |
| | | * 校验密码是否相同,在新平台中存储的密码是两次md5 |
| | | * @param userOid 用户主键 |
| | |
| | | /** |
| | | * 修改密码 |
| | | * @param userOid 用户主键 |
| | | * @param oldPassword 旧的密码 |
| | | * @param password 新的密码 |
| | | * @param confirmPassword 确认密码 |
| | | */ |
| | | void changePassword(String userOid, String password, String confirmPassword) throws VciBaseException; |
| | | boolean changePassword(String userOid,String oldPassword, String password, String confirmPassword) throws Exception; |
| | | |
| | | /** |
| | | * 更新用户的密码错误次数 |
| | |
| | | * @return |
| | | * @throws VciBaseException |
| | | */ |
| | | BaseResult importUser(File file) throws VciBaseException; |
| | | BaseResult importUser(File file) throws Exception; |
| | | |
| | | } |