InOutRecord.php 634 B

12345678910111213141516171819202122
  1. <?php
  2. namespace App\Model;
  3. use Illuminate\Database\Eloquent\Model;
  4. class InOutRecord extends Model
  5. {
  6. protected $table = "in_out_record"; //指定表
  7. const CREATED_AT = 'crt_time';
  8. const UPDATED_AT = 'upd_time';
  9. protected $dateFormat = 'U';
  10. public static $order_type = [
  11. MaterialOrder::prefix => '领料单',
  12. Construction::prefix => '施工单',
  13. Construction::prefix_reject => '施工单:红冲',
  14. MaterialReturn::prefix => '退料单',
  15. Transfer::prefix => '调拨单',
  16. Inventory::prefix => '盘点单',
  17. OpeningReceiptOrder::prefix => '期初单',
  18. ];
  19. }