截流自动化的商城平台
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.

ShopWithdrawal.php 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. namespace app\common\model\shop;
  3. use app\common\basics\Models;
  4. use app\common\server\UrlServer;
  5. class ShopWithdrawal extends Models
  6. {
  7. /**
  8. * @Notes: 关联商家模型
  9. * @Author: 张无忌
  10. */
  11. public function shop()
  12. {
  13. return $this->hasOne('Shop', 'id', 'shop_id');
  14. }
  15. /**
  16. * @notes 关联提现支付宝账号
  17. * @return \think\model\relation\HasOne
  18. * @author lbzy
  19. * @datetime 2023-06-07 14:24:07
  20. */
  21. function alipay()
  22. {
  23. return $this->hasOne(ShopAlipay::class, 'id', 'alipay_id');
  24. }
  25. /**
  26. * @Notes: 获取器-转换图片路径
  27. * @Author: 张无忌
  28. * @param $value
  29. * @return string
  30. */
  31. public function getTransferVoucherAttr($value)
  32. {
  33. if ($value) {
  34. return UrlServer::getFileUrl($value);
  35. }
  36. return '';
  37. }
  38. /**
  39. * @Notes: 修改器-转换图片路径
  40. * @Author: 张无忌
  41. * @param $value
  42. * @return string
  43. */
  44. public function setTransferVoucherAttr($value)
  45. {
  46. if ($value) {
  47. return UrlServer::setFileUrl($value);
  48. }
  49. return '';
  50. }
  51. }