1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace app\admin\model;
- use think\Model;
- class Viplog extends Model
- {
- // 表名
- protected $name = 'vip_buy_log';
-
- // 自动写入时间戳字段
- protected $autoWriteTimestamp = false;
- // 定义时间戳字段名
- protected $createTime = false;
- protected $updateTime = false;
- protected $deleteTime = false;
- // 追加属性
- protected $append = [
- ];
-
- public function getPayStatusAttr($value)
- {
- $status = ['0' => '未支付', '1' => '已支付'];
- return $status[$value];
- }
- }
|