CostManagement.php 393 B

1234567891011121314
  1. <?php
  2. namespace App\Model;
  3. class CostManagement extends UseScopeBaseModel
  4. {
  5. protected $table = "cost_management"; //指定表
  6. const CREATED_AT = 'crt_time';
  7. const UPDATED_AT = 'upd_time';
  8. protected $dateFormat = 'U';
  9. const employee_column = "crt_id";
  10. public static $field = ['man_mark','id','mark','amount','crt_id','crt_time','customer_supply_id', 'order_time'];
  11. }