| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 | <?phpnamespace app\admin\model;use think\Model;class Gift extends Model{            // 表名    protected $name = 'gift';        // 自动写入时间戳字段    protected $autoWriteTimestamp = false;    // 定义时间戳字段名    protected $createTime = false;    protected $updateTime = false;    protected $deleteTime = false;    // 追加属性    protected $append = [        'is_show_text'    ];        protected static function init()    {        self::afterInsert(function ($row) {            $pk = $row->getPk();            $row->getQuery()->where($pk, $row[$pk])->update(['weigh' => $row[$pk]]);        });    }        public function getIsShowList()    {        return ['1' => __('Is_show 1'), '0' => __('Is_show 0')];    }    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 gifttype()    {        return $this->belongsTo('Gifttype', 'type_id', 'id', [], 'LEFT')->setEagerlyType(0);    }}
 |