Withdraw.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. namespace app\admin\model\service\money;
  3. use think\Model;
  4. class Withdraw extends Model
  5. {
  6. // 表名
  7. protected $name = 'service_withdraw';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'integer';
  10. // 定义时间戳字段名
  11. protected $createTime = 'createtime';
  12. protected $updateTime = 'updatetime';
  13. protected $deleteTime = false;
  14. // 追加属性
  15. protected $append = [
  16. 'type_text',
  17. 'withdrawtype_text',
  18. 'state_text'
  19. ];
  20. public function getTypeList()
  21. {
  22. return ['0' => __('Type 0'), '1' => __('Type 1'), '2' => __('Type 2'), '3' => __('Type 3'), '4' => __('Type 4')];
  23. }
  24. public function getWithdrawtypeList()
  25. {
  26. return ['0' => __('Withdrawtype 0'), '1' => __('Withdrawtype 1')];
  27. }
  28. public function getStateList()
  29. {
  30. return ['-1' => __('State -1'), '0' => __('State 0'), '1' => __('State 1'), '2' => __('State 2')];
  31. }
  32. public function getTypeTextAttr($value, $data)
  33. {
  34. $value = $value ? $value : (isset($data['type']) ? $data['type'] : '');
  35. $list = $this->getTypeList();
  36. return isset($list[$value]) ? $list[$value] : '';
  37. }
  38. public function getWithdrawtypeTextAttr($value, $data)
  39. {
  40. $value = $value ? $value : (isset($data['withdrawtype']) ? $data['withdrawtype'] : '');
  41. $list = $this->getWithdrawtypeList();
  42. return isset($list[$value]) ? $list[$value] : '';
  43. }
  44. public function getStateTextAttr($value, $data)
  45. {
  46. $value = $value ? $value : (isset($data['state']) ? $data['state'] : '');
  47. $list = $this->getStateList();
  48. return isset($list[$value]) ? $list[$value] : '';
  49. }
  50. }