Product.php 454 B

12345678910111213
  1. <?php
  2. namespace App\Model;
  3. class Product extends UseScopeBaseModel
  4. {
  5. protected $table = "product"; //指定表
  6. const CREATED_AT = 'crt_time';
  7. const UPDATED_AT = 'upd_time';
  8. protected $dateFormat = 'U';
  9. public static $field = ['title','id','category','code','size','unit','business_cost','write_off_price','cost','write_off_price','crt_id','crt_time','mark','return_change_price','freight_price','major_client_settlement_price'];
  10. }