- <?php
- namespace App\Model;
- class AuxiliaryAccountDetails extends DataScopeBaseModel
- {
- //设备日工时单
- protected $table = "auxiliary_account_details"; //指定表
- const CREATED_AT = 'crt_time';
- const UPDATED_AT = 'upd_time';
- protected $dateFormat = 'U';
- const employee_column = "crt_id";
- const Order_type = "auxiliary_account_details";
- }
|