StatRepository

interface StatRepository

能力值仓储接口

定义能力值数据的查询与持久化操作

Author

lishangbu

Since

2026/2/11

Inheritors

Functions

Link copied to clipboard
abstract fun deleteById(id: Long)

按 ID 删除能力值

Link copied to clipboard
abstract fun findAll(example: Example<Stat>?): List<Stat>

按条件查询能力值列表

abstract fun findAll(example: Example<Stat>?, pageable: Pageable): Page<Stat>

按条件分页查询能力值

Link copied to clipboard
abstract fun save(stat: Stat): Stat

保存能力值