123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?php
- namespace app\admin\model\egg;
- use think\Model;
- use think\Db;
- class Jackpot extends Model
- {
-
-
- // 表名
- protected $name = 'egg_jackpot';
-
- // 自动写入时间戳字段
- protected $autoWriteTimestamp = 'int';
- // 定义时间戳字段名
- protected $createTime = false;
- protected $updateTime = 'updatetime';
- protected $deleteTime = false;
- // 追加属性
- protected $append = [
- 'status_text',
- 'type_text'
- ];
-
- protected static function init()
- {
- self::afterInsert(function ($row) {
- $pk = $row->getPk();
- $row->getQuery()->where($pk, $row[$pk])->update(['weigh' => $row[$pk]]);
- });
- self::afterUpdate(function ($row) {
- $changed = $row->getChangedData();
- if (isset($changed['status'])) {
- if ($changed['status'] == -1) {
- Db::name('egg_gift')->where('Jackpot_id',$row['id'])->update(['is_use'=>1]);
- }else{
- Db::name('egg_gift')->where('Jackpot_id',$row['id'])->update(['is_use'=>0,'updatetime'=>$row['updatetime']]);
- }
- }
- });
- }
-
- public function getStatusList()
- {
- return ['-1' => __('Status -1'), '1' => __('Status 1'), '0' => __('Status 0')];
- }
- public function getTypeList()
- {
- return ['1' => __('Type 1'), '2' => __('Type 2'), '3' => __('Type 3')];
- }
- public function getStatusTextAttr($value, $data)
- {
- $value = $value ? $value : (isset($data['status']) ? $data['status'] : '');
- $list = $this->getStatusList();
- return isset($list[$value]) ? $list[$value] : '';
- }
- public function getTypeTextAttr($value, $data)
- {
- $value = $value ? $value : (isset($data['type']) ? $data['type'] : '');
- $list = $this->getTypeList();
- return isset($list[$value]) ? $list[$value] : '';
- }
- }
|