You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.3 KiB
64 lines
1.3 KiB
2 years ago
|
<?php
|
||
|
|
||
|
namespace app\admin\model\shopro\activity;
|
||
|
|
||
|
use think\Model;
|
||
|
|
||
|
|
||
|
class Groupon extends Model
|
||
|
{
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
// 表名
|
||
|
protected $name = 'shopro_activity_groupon';
|
||
|
|
||
|
// 自动写入时间戳字段
|
||
|
protected $autoWriteTimestamp = 'int';
|
||
|
|
||
|
// 定义时间戳字段名
|
||
|
protected $createTime = 'createtime';
|
||
|
protected $updateTime = 'updatetime';
|
||
|
protected $deleteTime = false;
|
||
|
|
||
|
// 追加属性
|
||
|
protected $append = [
|
||
|
'status_text'
|
||
|
];
|
||
|
|
||
|
|
||
|
|
||
|
public function getStatusList()
|
||
|
{
|
||
|
return ['invalid' => __('Status invalid'), 'ing' => __('Status ing'), 'finish' => __('Status finish'), 'finish-fictitious' => __('Status finish-fictitious')];
|
||
|
}
|
||
|
|
||
|
|
||
|
public function getStatusTextAttr($value, $data)
|
||
|
{
|
||
|
$value = $value ? $value : (isset($data['status']) ? $data['status'] : '');
|
||
|
$list = $this->getStatusList();
|
||
|
return isset($list[$value]) ? $list[$value] : '';
|
||
|
}
|
||
|
|
||
|
|
||
|
public function grouponLog()
|
||
|
{
|
||
|
return $this->hasMany(\app\admin\model\shopro\activity\GrouponLog::class, 'groupon_id', 'id');
|
||
|
}
|
||
|
|
||
|
|
||
|
public function user()
|
||
|
{
|
||
|
return $this->belongsTo(\app\admin\model\User::class, 'user_id', 'id');
|
||
|
}
|
||
|
|
||
|
public function goods()
|
||
|
{
|
||
|
return $this->belongsTo(\app\admin\model\shopro\goods\Goods::class, 'goods_id', 'id');
|
||
|
}
|
||
|
|
||
|
}
|