LogisticNumberFeature.php 222 B

1234567891011
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class LogisticNumberFeature extends Model
  5. {
  6. protected $fillable=['logistic_id','name','value','weight'];
  7. static public $featureConsideringLength=4;
  8. }