Files
webman-buildadmin/app/common/model/OperationNotice.php
2026-04-16 14:32:35 +08:00

21 lines
393 B
PHP

<?php
namespace app\common\model;
use support\think\Model;
class OperationNotice extends Model
{
protected $name = 'operation_notice';
protected $autoWriteTimestamp = true;
protected $type = [
'create_time' => 'integer',
'update_time' => 'integer',
'publish_at' => 'integer',
'notice_type' => 'integer',
'status' => 'integer',
];
}