1234567891011121314151617181920212223242526272829303132 |
- <?php
- /**
- * Created by PhpStorm.
- * User: z-yang
- * Date: 2020/2/6
- * Time: 22:06
- */
- namespace App\Modules\OfficialAccount\Models;
- use Illuminate\Database\Eloquent\Model;
- class ForceSubscribeDelayMsg extends Model
- {
- protected $table = 'force_subscribe_delay_msg';
- protected $connection = 'api_mysql';
- protected $fillable = [
- 'id',
- 'distribution_channel_id',
- 'title',
- 'link',
- 'icon',
- 'desc',
- 'time_delay',
- 'is_enable',
- 'is_show',
- 'mode',
- 'content'
- ];
- }
|