CostManagement.php 557 B

123456789101112131415161718192021
  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', 'is_open'];
  11. const is_open = 1;
  12. const is_not_open = 0;
  13. const IS_OPEN_title = [
  14. self::is_not_open => '否',
  15. self::is_open => '是'
  16. ];
  17. }