ThirdPayLog.php 674 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. namespace app\api\model;
  3. use think\Model;
  4. class ThirdPayLog extends BaseModel
  5. {
  6. // 表名
  7. protected $name = 'third_pay_log';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'integer';
  10. // 定义时间戳字段名
  11. protected $createTime = 'createtime';
  12. protected $updateTime = 'updatetime';
  13. protected $deleteTime = false;
  14. // 追加属性
  15. protected $append = [
  16. ];
  17. static function TPKey($no) {
  18. return "third:pay:$no";
  19. }
  20. public function getByNo($no) {
  21. return $this->where([
  22. "no" => $no,
  23. "status" => \E_BASE_STATUS::Default
  24. ])->find();
  25. }
  26. }