12345678910111213141516171819 |
- <?php
- namespace App\Model;
- use Illuminate\Database\Eloquent\Model;
- /**
- * 班组管理
- * Class Unit
- * @package App\Models
- */
- class Team extends Model
- {
- protected $table = "team"; //指定表
- const CREATED_AT = 'crt_time';
- const UPDATED_AT = 'upd_time';
- protected $dateFormat = 'U';
- }
|