| 1234567891011121314151617 |
- <?php
- namespace App\Model;
- class AuxiliaryAccount extends DataScopeBaseModel
- {
- //研发支出辅助帐单
- protected $table = "auxiliary_account"; //指定表
- const CREATED_AT = 'crt_time';
- const UPDATED_AT = 'upd_time';
- protected $dateFormat = 'U';
- const employee_column = "crt_id";
- public static $field = ['id','code','crt_time','month',"crt_id"];
- const Order_type = "auxiliary_account";
- }
|