xiangpei
2025-05-26 0e066580ae71856470dd2b2f621cdad78fd0e608
buyer-api/src/main/java/cn/lili/controller/lmk/VideoController.java
@@ -3,6 +3,8 @@
import cn.lili.base.AbsQuery;
import cn.lili.group.Update;
import cn.lili.group.Add;
import cn.lili.modules.lmk.domain.form.VideoFootPrintForm;
import cn.lili.modules.member.entity.dos.FootPrint;
import org.springframework.validation.annotation.Validated;
import org.springframework.security.access.prepost.PreAuthorize;
import lombok.RequiredArgsConstructor;
@@ -70,4 +72,9 @@
        return videoService.recommendVideo(query);
    }
    @PostMapping("/view/record")
    @ApiOperation(value = "保存观看记录", notes = "保存观看记录")
    public Result saveViewRecord(VideoFootPrintForm form) {
        return videoService.saveViewRecord(form);
    }
}