24 lines
378 B
PHP
24 lines
378 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace app\model\syj;
|
|
|
|
use crmeb\basic\BaseModel;
|
|
use crmeb\traits\ModelTrait;
|
|
|
|
class PromoteAmountLog extends BaseModel
|
|
{
|
|
use ModelTrait;
|
|
|
|
protected $pk = 'id';
|
|
|
|
protected $name = 'syj_promote_amount_log';
|
|
|
|
protected $autoWriteTimestamp = false;
|
|
|
|
public function setAddTimeAttr(): int
|
|
{
|
|
return time();
|
|
}
|
|
}
|