123456789101112131415161718 |
- <?php
- namespace App\Model;
- use Illuminate\Database\Eloquent\Model;
- class BasicTypeAllUse extends Model
- {
- protected $table = "basic_type_all_use"; //指定表
- const CREATED_AT = 'crt_time';
- const UPDATED_AT = 'upd_time';
- protected $dateFormat = 'U';
- const type_one = 1;
- public static $type = [
- self::type_one => "咨询客户",
- ];
- }
|