家政小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

HouseApplianceCleanOrder.php 667B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * Class HouseApplianceCleanOrder
  6. * @package App\Models
  7. * 家电清洁
  8. */
  9. class HouseApplianceCleanOrder extends Model
  10. {
  11. public $classify1 = "家政";
  12. public $classify2 = "家电清洁";
  13. public $order_type = "house_appliance_clean_order";
  14. protected $fillable = [
  15. 'wechat_id', // 微信号id(open_id)
  16. 'appliances', // 项目, 数组形式,多个数量则出现多次
  17. 'address', // 服务地址
  18. 'contact', // 联系人
  19. 'phone', //联系电话
  20. 'status', // 订单状态
  21. 'price', // 订单价格
  22. 'type' // 订单分类
  23. ];
  24. }