Interface IdService

All Known Implementing Classes:
IdServiceImpl

public interface IdService
ID服务接口,定义了ID的存储操作。 该接口提供了将生成的ID存储到指定表中的功能。
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    insert(String table, Object id)
    将生成的ID插入到指定的表中。
  • Method Details

    • insert

      void insert(String table, Object id)
      将生成的ID插入到指定的表中。
      Parameters:
      table - 目标表名
      id - 要插入的ID值