Merge remote-tracking branch 'origin/test' into test
| | |
| | | private String name; |
| | | @ApiModelProperty(value = "身份证") |
| | | private String idCard; |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
| | | @ApiModelProperty(value = "入党时间") |
| | | private Date joinTime; |
| | | @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
| | |
| | | |
| | | @ApiModelProperty("户口本照片 逗号隔开") |
| | | private String familyBook; |
| | | |
| | | @ApiModelProperty("职业") |
| | | private String job; |
| | | } |
| | |
| | | " card_photo_front = #{userArchivesVO.cardPhotoFront} \n" + |
| | | ", card_photo_back = #{userArchivesVO.cardPhotoBack} \n" + |
| | | ",family_book = #{userArchivesVO.familyBook} \n" + |
| | | ",job = #{userArchivesVO.job} \n" + |
| | | " where user_id = #{userArchivesVO.userId}") |
| | | void updateUserArchives(@Param("userArchivesVO") UpdateUserArchivesVO userArchivesVO); |
| | | |