| 12345678910111213 |
- <?php
- namespace App;
- use Illuminate\Database\Eloquent\Model;
- use App\Traits\ModelTimeFormat;
- class LogisticNumberFeature extends Model
- {
- use ModelTimeFormat;
- protected $fillable=['logistic_id','name','value','weight'];
- static public $featureConsideringLength=4;
- }
|