| | |
| | | entity.setIsNormal(dto.getIsNormal() ); |
| | | entity.setFinderUserName(dto.getFinderUserName()); |
| | | entity.setFeedId(dto.getFeedId()); |
| | | entity.setFeedImg(dto.getFeedImg()); |
| | | entity.setTitle(dto.getTitle()); |
| | | entity.setDescription(dto.getDescription()); |
| | | entity.setCreatedTime(new Date()); |
| | |
| | | .set(AiProductPoint::getFinderUserName, dto.getFinderUserName()) |
| | | .set(AiProductPoint::getFeedId, dto.getFeedId()) |
| | | .set(AiProductPoint::getTitle, dto.getTitle()) |
| | | .set(AiProductPoint::getFeedImg, dto.getFeedImg()) |
| | | .set(AiProductPoint::getDescription, dto.getDescription()) |
| | | .set(AiProductPoint::getUpdatedTime, new Date()) |
| | | .eq(AiProductPoint::getId, id) |