Files
huangjingfen/pro_v3.5.1/app/model/syj/PromoteUserAmount.php

23 lines
387 B
PHP
Raw Normal View History

2026-05-03 14:44:12 +08:00
<?php
declare(strict_types=1);
namespace app\model\syj;
use crmeb\basic\BaseModel;
use crmeb\traits\ModelTrait;
class PromoteUserAmount extends BaseModel
{
use ModelTrait;
protected $pk = 'id';
protected $name = 'syj_promote_user_amount';
protected $autoWriteTimestamp = 'int';
protected $createTime = 'add_time';
protected $updateTime = 'update_time';
}