OracleDocOrderPackingSummary.php 429 B

123456789101112131415
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class OracleDocOrderPackingSummary extends Model
  5. {
  6. protected $connection="oracle";
  7. protected $primaryKey="traceid";
  8. protected $table = 'doc_order_packing_summary';
  9. protected $fillable = ['traceid','orderno','grossweight','addwho','addtime','editwho','edittime'];
  10. public $timestamps=false;
  11. public function getIncrementing(){ return false;}
  12. }