Class BrowseRestController


@RestController @RequestMapping("/api/v1/browse") @Description("Browse Record Controller - Customer browsing history and behavior tracking APIs") public class BrowseRestController extends BaseRestController<BrowseRequest,BrowseRestService>
浏览记录管理控制器。 <p&amp;gt; 提供浏览记录的RESTful API接口,包括创建、查询、更新和删除浏览记录等操作。 所有接口都遵循REST规范,并使用Swagger进行文档记录。 </p>
Since:
2024-03-22
Version:
1.0
Author:
jackning
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final BrowseRestService
     
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    org.springframework.http.ResponseEntity<?>
    通用的create实现 减少子类重复代码 注意:由于泛型擦除,需要使用PageableRequest.class来查找方法
    org.springframework.http.ResponseEntity<?>
    通用的delete实现 减少子类重复代码 注意:由于泛型擦除,需要使用PageableRequest.class来查找方法
    export(BrowseRequest request, jakarta.servlet.http.HttpServletResponse response)
    export
    org.springframework.http.ResponseEntity<?>
    通用的queryByOrg实现 减少子类重复代码 注意:由于泛型擦除,需要使用PageableRequest.class来查找方法
    org.springframework.http.ResponseEntity<?>
    通用的queryByUid实现 减少子类重复代码 注意:由于泛型擦除,需要使用PageableRequest.class来查找方法
    org.springframework.http.ResponseEntity<?>
    通用的queryByUser实现 减少子类重复代码 注意:由于泛型擦除,需要使用PageableRequest.class来查找方法
    org.springframework.http.ResponseEntity<?>
    查询访客的所有浏览记录
    org.springframework.http.ResponseEntity<?>
    通用的update实现 减少子类重复代码 注意:由于泛型擦除,需要使用PageableRequest.class来查找方法

    Methods inherited from class com.bytedesk.core.base.BaseRestController

    deleteByOrgUid, exportTemplate, getService

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait