building-sign/app/building/ManagerInterface.php

16 lines
196 B
PHP
Raw Normal View History

2023-01-09 08:41:41 +00:00
<?php
namespace app\building;
interface ManagerInterface
{
// 审核录入资料
public function checkInfo();
// 审核加班
public function checkOvertime();
// 审核
}