mirror of
https://git.beihong.wang/wangbeihong/blog-source.git
synced 2026-04-23 14:53:04 +08:00
14 lines
175 B
PHP
Executable File
14 lines
175 B
PHP
Executable File
<?php
|
|
|
|
namespace Widget\Base;
|
|
|
|
interface PrimaryKeyInterface
|
|
{
|
|
/**
|
|
* 获取主键
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getPrimaryKey(): string;
|
|
}
|