LogisticNumberFeature.php 287 B

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