We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
public Response login(PersonDTO personDTO) throws ParseException { return loginApplicationService.login(PersonAssembler.toDO(personDTO)); } public static Person toDO(PersonDTO dto) throws ParseException { Person person = new Person(); person.setPersonId(dto.getPersonId()); person.setPersonType(PersonType.valueOf(dto.getPersonType())); person.setPersonName(dto.getPersonName()); person.setStatus(PersonStatus.valueOf(dto.getStatus())); person.setCreateTime(DateUtil.parseDateTime(dto.getCreateTime())); person.setLastModifyTime(DateUtil.parseDateTime(dto.getLastModifyTime())); return person; }
The text was updated successfully, but these errors were encountered:
编译都不通过的代码 为什么好意思上传
Sorry, something went wrong.
No branches or pull requests
PersonAssembler.toDO()的ParseException未处理
The text was updated successfully, but these errors were encountered: