12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- namespace app\company\controller;
- use library\Controller;
- class Clock extends Controller
- {
-
- protected $table = 'CompanyUserClock';
-
- public function index()
- {
- $this->title = '网络打卡管理';
- $this->_query($this->table)->like('name')->equal('date')->order('id asc')->page();
- }
- }
|