123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace app\admin\model\wwh;
- use think\Model;
- class Qa extends Model
- {
- // 表名
- protected $name = 'wwh_qa';
-
- // 自动写入时间戳字段
- protected $autoWriteTimestamp = 'int';
- // 定义时间戳字段名
- protected $createTime = 'createtime';
- protected $updateTime = false;
- protected $deleteTime = false;
- // 追加属性
- protected $append = [
- 'lang_text'
- ];
- public function getLangList()
- {
- return ['1' => __('Lang 1'), '2' => __('Lang 2')];
- }
- public function getLangTextAttr($value, $data)
- {
- $value = $value ?: ($data['lang'] ?? '');
- $list = $this->getLangList();
- return $list[$value] ?? '';
- }
- }
|