ProductSnInfo.php 430 B

123456789101112131415161718
  1. <?php
  2. namespace App\Model;
  3. class ProductSnInfo extends UseScopeBaseModel
  4. {
  5. protected $table = "product_sn_info"; //指定表
  6. const CREATED_AT = 'crt_time';
  7. const UPDATED_AT = 'upd_time';
  8. protected $dateFormat = 'U';
  9. const range_function = '';
  10. const type_one = 1;
  11. const type_two = 2;
  12. public static $type_name = [
  13. self::type_one => '施工单',
  14. self::type_two => '合同',
  15. ];
  16. }