- <?php
- namespace App\Model;
- use Illuminate\Database\Eloquent\Model;
- class CustomerFromThreePlatForm extends Model
- {
- protected $table = "customer_from_three_platform"; //指定表
- const CREATED_AT = 'crt_time';
- const UPDATED_AT = 'upd_time';
- protected $dateFormat = 'U';
- const job = 't9_customer_from_online';
- }
|