16 lines
196 B
PHP
16 lines
196 B
PHP
|
<?php
|
||
|
|
||
|
namespace app\building;
|
||
|
|
||
|
interface ManagerInterface
|
||
|
{
|
||
|
// 审核录入资料
|
||
|
public function checkInfo();
|
||
|
|
||
|
// 审核加班
|
||
|
public function checkOvertime();
|
||
|
|
||
|
// 审核
|
||
|
}
|
||
|
|