Files
blog-source/var/Widget/Base/PrimaryKeyInterface.php
2026-03-04 00:23:03 +08:00

14 lines
175 B
PHP
Executable File

<?php
namespace Widget\Base;
interface PrimaryKeyInterface
{
/**
* 获取主键
*
* @return string
*/
public function getPrimaryKey(): string;
}