15 lines
204 B
PHP
15 lines
204 B
PHP
<?php
|
|
|
|
namespace app\model;
|
|
|
|
use think\Model;
|
|
|
|
class Order extends Model
|
|
{
|
|
protected $autoWriteTimestamp = true;
|
|
|
|
public function paid(){
|
|
$this->status = 1;
|
|
$this->save();
|
|
}
|
|
} |