CustomSendMsgs.php 787 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. namespace General\Models\OfficialAccount;
  3. use Illuminate\Database\Eloquent\Model;
  4. class CustomSendMsgs extends Model
  5. {
  6. protected $tables = 'custom_send_msgs';
  7. protected $fillable = [
  8. 'task_id',
  9. 'user_num',
  10. 'appid',
  11. 'name',
  12. 'send_time',
  13. 'content',
  14. 'redirect_url',
  15. 'status',
  16. 'distribution_channel_id',
  17. 'subscribe_time',
  18. 'sex',
  19. 'balance',
  20. 'order_type',
  21. 'category_id',
  22. 'del_flag',
  23. 'is_full_send',
  24. 'trusteeship',
  25. 'batch_no',
  26. 'batch_order_sn',
  27. 'is_show_list',
  28. 'description',
  29. 'custom_type',
  30. 'book_name',
  31. 'chapter_name',
  32. 'is_activity',
  33. 'subscribe_time_attach'
  34. ];
  35. }