1234567891011121314151617181920212223242526 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author:kane < chengjin005@163.com>
- // +----------------------------------------------------------------------
- namespace app\teahouse\model;
- use think\Model;
- class LockModel extends Model
- {
- public static $IS_SHOW = [
- 1 => "显示",
- 2 => "隐藏",
- ];
- public function getIsShowTextAttr($value, $data)
- {
- return self::$IS_SHOW[$data['is_show']];
- }
- }
|