| 1234567891011121314151617181920212223242526 |
- <?php
- namespace App;
- use Illuminate\Database\Eloquent\Model;
- use App\Traits\ModelLogChanging;
- class Feature extends Model
- {
- use ModelLogChanging;
- protected $fillable = [
- "type", //类型
- "logic", //逻辑
- "describe", //特征
- ];
- const type = [
- 0 => "商品名称",
- 1 => "订单类型",
- 2 => "承运商",
- 3 => "店铺类型",
- 4 => "波次类型",
- ];
- }
|