Feature.php 448 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. use App\Traits\ModelLogChanging;
  5. class Feature extends Model
  6. {
  7. use ModelLogChanging;
  8. protected $fillable = [
  9. "type", //类型
  10. "logic", //逻辑
  11. "describe", //特征
  12. ];
  13. const type = [
  14. 0 => "商品名称",
  15. 1 => "订单类型",
  16. 2 => "承运商",
  17. 3 => "店铺类型",
  18. 4 => "波次类型",
  19. ];
  20. }