家政小程序
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.

HousekeeperOrder.php 805B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * Class HousekeeperOrder
  6. * @package App\Models
  7. * 保姆订单
  8. */
  9. class HousekeeperOrder extends Model
  10. {
  11. public $classify1 = "家政";
  12. public $classify2 = "保姆";
  13. public $order_type = "housekeeper_order";
  14. protected $fillable = [
  15. 'wechat_id', // 微信号id(open_id)
  16. 'contents', // 服务内容, 数组形式,多个数量则出现多次
  17. 'people_num', //人口数量
  18. 'area', // 房屋面积
  19. 'server_time', // 服务时间: 全白天/住家
  20. 'rest', // 休息安排
  21. 'address', // 服务地址
  22. 'contact', // 联系人
  23. 'phone', //联系电话
  24. 'status', // 订单状态
  25. 'price', // 订单价格
  26. 'photo' // 显示的图片
  27. ];
  28. }