123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- namespace app\admin\model;
- use think\Model;
- class Payvipconfig extends Model
- {
-
-
- // 表名
- protected $name = 'payvip_config';
-
- // 自动写入时间戳字段
- protected $autoWriteTimestamp = false;
- // 定义时间戳字段名
- protected $createTime = false;
- protected $updateTime = false;
- protected $deleteTime = false;
- // 追加属性
- protected $append = [
- 'is_show_text',
- 'vip_level_text'
- ];
-
-
- public function getIsShowList()
- {
- return ['1' => __('Is_show 1'), '0' => __('Is_show 0')];
- }
- public function getVipLevelList()
- {
- return ['10' => __('Vip_level 10'), '20' => __('Vip_level 20')];
- }
- public function getIsShowTextAttr($value, $data)
- {
- $value = $value ? $value : (isset($data['is_show']) ? $data['is_show'] : '');
- $list = $this->getIsShowList();
- return isset($list[$value]) ? $list[$value] : '';
- }
- public function getVipLevelTextAttr($value, $data)
- {
- $value = $value ? $value : (isset($data['vip_level']) ? $data['vip_level'] : '');
- $list = $this->getVipLevelList();
- return isset($list[$value]) ? $list[$value] : '';
- }
- }
|