1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- namespace app\common\model;
- use think\Model;
- class Hearbook extends Model
- {
- // 表名
- protected $table = 'hearbook';
-
- // 自动写入时间戳字段
- protected $autoWriteTimestamp = false;
- // 定义时间戳字段名
- protected $createTime = false;
- protected $updateTime = false;
-
- // 追加属性
- protected $append = [
- 'isallowed_text',
- 'status_text'
- ];
-
-
- public function getIsallowedList()
- {
- return ['0' => __('Isallowed 0'),'1' => __('Isallowed 1')];
- }
- public function getStatusList()
- {
- return ['0' => __('Status 0'),'1' => __('Status 1')];
- }
- public function getIsallowedTextAttr($value, $data)
- {
- $value = $value ? $value : $data['isallowed'];
- $list = $this->getIsallowedList();
- return isset($list[$value]) ? $list[$value] : '';
- }
- public function getStatusTextAttr($value, $data)
- {
- $value = $value ? $value : $data['status'];
- $list = $this->getStatusList();
- return isset($list[$value]) ? $list[$value] : '';
- }
- }
|