Withdraw.php 581 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace addons\withdraw\model;
  3. use think\Model;
  4. /**
  5. * 提现模型
  6. */
  7. class Withdraw extends Model
  8. {
  9. // 表名
  10. protected $name = 'withdraw';
  11. // 开启自动写入时间戳字段
  12. protected $autoWriteTimestamp = 'int';
  13. // 定义时间戳字段名
  14. protected $createTime = 'createtime';
  15. protected $updateTime = 'updatetime';
  16. // 追加属性
  17. protected $append = [
  18. ];
  19. public function getSettledmoneyAttr($value, $data)
  20. {
  21. return max(0, sprintf("%.2f", $data['money'] - $data['handingfee'] - $data['taxes']));
  22. }
  23. }