123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- namespace General\Models\OfficialAccount;
- use Illuminate\Database\Eloquent\Model;
- class CustomSendMsgs extends Model
- {
- protected $tables = 'custom_send_msgs';
- protected $fillable = [
- 'task_id',
- 'user_num',
- 'appid',
- 'name',
- 'send_time',
- 'content',
- 'redirect_url',
- 'status',
- 'distribution_channel_id',
- 'subscribe_time',
- 'sex',
- 'balance',
- 'order_type',
- 'category_id',
- 'del_flag',
- 'is_full_send',
- 'trusteeship',
- 'batch_no',
- 'batch_order_sn',
- 'is_show_list',
- 'description',
- 'custom_type',
- 'book_name',
- 'chapter_name',
- 'is_activity',
- 'subscribe_time_attach'
- ];
- }
|