Gift.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. class Gift extends Model
  5. {
  6. // 表名
  7. protected $name = 'gift';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'int';
  10. // 定义时间戳字段名
  11. protected $createTime = 'createtime';
  12. protected $updateTime = 'updatetime';
  13. protected $deleteTime = false;
  14. // 追加属性
  15. protected $append = [
  16. ];
  17. protected static function init()
  18. {
  19. //两个毫无用处的字段,没有还不行
  20. self::afterInsert(function ($row){
  21. $data = [
  22. 'no' => $row['id'],
  23. 'price' => $row['value'],
  24. ];
  25. db('gift')->where('id',$row['id'])->update($data);
  26. });
  27. self::beforeUpdate(function ($row) {
  28. $changed = $row->getChangedData();
  29. //如果有修改密码
  30. if (isset($changed['value'])) {
  31. $row->price = $changed['value'];
  32. }
  33. });
  34. }
  35. public function gifttype()
  36. {
  37. return $this->belongsTo('Gifttype', 'type', 'id', [], 'LEFT')->setEagerlyType(0);
  38. }
  39. }