| | |
| | | import com.java110.core.event.cmd.Cmd; |
| | | import com.java110.core.event.cmd.CmdEvent; |
| | | import com.java110.core.factory.GenerateCodeFactory; |
| | | import com.java110.core.smo.IPhotoSMO; |
| | | import com.java110.dto.user.UserDto; |
| | | import com.java110.intf.user.IExamineStaffIntroductionV1InnerServiceSMO; |
| | | import com.java110.intf.user.IExamineStaffProjectV1InnerServiceSMO; |
| | |
| | | |
| | | @Autowired |
| | | private IExamineStaffIntroductionV1InnerServiceSMO examineStaffIntroductionV1InnerServiceSMOImpl; |
| | | |
| | | @Autowired |
| | | private IPhotoSMO photoSMOImpl; |
| | | |
| | | @Override |
| | | public void validate(CmdEvent event, ICmdDataFlowContext cmdDataFlowContext, JSONObject reqJson) { |
| | |
| | | examineStaffIntroductionV1InnerServiceSMOImpl.saveExamineStaffIntroduction(examineStaffIntroductionPo); |
| | | } |
| | | |
| | | // todo save examine staff face image |
| | | photoSMOImpl.savePhoto(reqJson.getString("headerImg"), |
| | | examineStaffPo.getEsId(), |
| | | reqJson.getString("communityId")); |
| | | |
| | | |
| | | cmdDataFlowContext.setResponseEntity(ResultVo.success()); |