@Override
public final gaeaera.model.common.PageList<gaea.workflow.dto.FormDesignDto> asFormDesignDto(gaeaera.model.common.PageList<gaea.workflow.domain.core.FormDesignDomain> in) {
gaeaera.model.common.PageList<gaea.workflow.dto.FormDesignDto> out = null;
if (in != null) {
out = new gaeaera.model.common.PageList<gaea.workflow.dto.FormDesignDto>();
if (in.getList() != null) {
java.util.ArrayList<T> alistTmpCollection = new java.util.ArrayList<T>(in.getList().size());
for (T alistItem : in.getList()) {
}
out.setList(alistTmpCollection);
}
else {
out.setList(null);
}
out.setPageInfo(asPageInfo(in.getPageInfo()));
}
return out;
}
The text was updated successfully, but these errors were encountered:
i hava a common class like this.
and i have a mapper like this
and the generate code is wrong!
The text was updated successfully, but these errors were encountered: