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

12345678910111213141516171819202122232425262728293031
  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. protected $fillable = [
  14. 'wechat_id', // 微信号id(open_id)
  15. 'contents', // 服务内容, 数组形式,多个数量则出现多次
  16. 'people_num', //人口数量
  17. 'area', // 房屋面积
  18. 'server_time', // 服务时间: 全白天/住家
  19. 'rest', // 休息安排
  20. 'address', // 服务地址
  21. 'contact', // 联系人
  22. 'phone', //联系电话
  23. 'status', // 订单状态
  24. 'price' // 订单价格
  25. ];
  26. }