1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- namespace app\admin\model\lottery;
- use think\Model;
- use traits\model\SoftDelete;
- class Prize extends Model
- {
- use SoftDelete;
-
- // 表名
- protected $name = 'luck_prize';
-
- // 自动写入时间戳字段
- protected $autoWriteTimestamp = 'integer';
- // 定义时间戳字段名
- protected $createTime = 'createtime';
- protected $updateTime = 'updatetime';
- protected $deleteTime = 'deletetime';
- // 追加属性
- protected $append = [
- 'type_text',
- 'image_full_url'
- ];
-
-
- public function getTypeList()
- {
- return ['1' => __('未中奖'), '4' => __('红包')];
- }
- public function getTypeTextAttr($value, $data)
- {
- $value = $value ? $value : (isset($data['type']) ? $data['type'] : '');
- $list = $this->getTypeList();
- return isset($list[$value]) ? $list[$value] : '';
- }
- public function getImageFullUrlAttr($value, $data)
- {
- $value = $value ?: (isset($data['image']) ? $data['image'] : '');
- return cdnurl($value, true);
- }
- public function lottery()
- {
- return $this->belongsTo(Info::class, 'lottery_id', 'id');
- }
- }
|