Files
charge-pile-serve/app/model/Enterprise.php
MeSHard 94f7e83679 init
2025-11-10 16:12:07 +08:00

12 lines
200 B
PHP

<?php
namespace app\model;
use think\Model;
use think\model\concern\SoftDelete;
class Enterprise extends Model
{
protected $createTime = 'create_time';
protected $updateTime = 'update_time';
}