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

MaternityMatronOrder.php 590B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * Class MaternityMatronOrder
  6. * @package App\Models
  7. * 月嫂订单
  8. */
  9. class MaternityMatronOrder extends Model
  10. {
  11. protected $fillable = [
  12. 'wechat_id', // 微信号id(open_id)
  13. 'level', // 月嫂等级
  14. 'expected_date', // 预产期
  15. 'server_time', // 服务时间
  16. 'special_demand', // 特殊需求
  17. 'address', // 服务地址
  18. 'contact', // 联系人
  19. 'phone', //联系电话
  20. 'status', // 订单状态
  21. 'price' // 订单价格
  22. ];
  23. }