12345678910111213141516171819 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2013-2017 http://www.thinkcmf.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Author: pl125 <xskjs888@163.com>
- // +----------------------------------------------------------------------
- namespace app\portal\model;
- use think\Model;
- class FeedbackModel extends Model
- {
- public static $STATUS = ['', "已读", "未读"];
- public static $TYPE = ['未知类型', '系统消息', '期望商家'];
- }
|