| 1234567891011121314151617 |
- <?php
- /**
- * Author: 芸众商城 www.yunzshop.com
- * Date: 2017/6/6
- * Time: 下午9:09
- */
- namespace app\common\modules\upload\models;
- use app\common\models\BaseModel;
- use Illuminate\Database\Eloquent\SoftDeletes;
- use Illuminate\Support\Facades\DB;
- class WechatAttachment extends CoreAttach
- {
- protected $tableName = 'wechat_attachment';
- }
|