| | |
| | | @Select("select user_id,card_photo_front,card_photo_back,family_book from sys_user where id_card=#{idCard}") |
| | | UserElectronicFileVO getSysUserElectronicFile(@Param("idCard") String idCard); |
| | | |
| | | @Select("select user_id,card_photo_front,card_photo_back,family_book from sys_user where user_id=#{userId}") |
| | | UserElectronicFileVO getSysUserById(@Param("userId") Long userId); |
| | | |
| | | @Select("update sys_user set card_photo_front=#{vo.cardPhotoFront},card_photo_back=#{vo.cardPhotoBack},family_book=#{vo.familyBook} where user_id=#{vo.userId}") |
| | | void updateSysUserElectronicFile(@Param("vo") UserElectronicFileVO vo); |
| | | } |