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

123456789101112131415161718192021222324252627282930
  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 $classify1 = "家政";
  12. protected $classify2 = "月嫂";
  13. protected $fillable = [
  14. 'wechat_id', // 微信号id(open_id)
  15. 'level', // 月嫂等级
  16. 'expected_date', // 预产期
  17. 'server_time', // 服务时间
  18. 'special_demand', // 特殊需求
  19. 'address', // 服务地址
  20. 'contact', // 联系人
  21. 'phone', //联系电话
  22. 'status', // 订单状态
  23. 'price' // 订单价格
  24. ];
  25. }