Files
ulthon_admin/app/admin/scheme/SystemAuth.php
2026-03-26 20:22:34 +08:00

40 lines
1.3 KiB
PHP

<?php
namespace app\admin\scheme;
use app\common\scheme\BaseScheme;
use app\common\scheme\attribute\Table;
use app\common\scheme\attribute\Field;
use app\common\scheme\attribute\Component;
use app\common\scheme\attribute\Index;
#[Table(name: 'ul_system_auth', comment: '系统权限表')]
#[Index(columns: ['title'], name: 'title', type: 'UNIQUE')]
#[Index(columns: ['delete_time'], name: 'delete_time', type: 'NORMAL')]
class SystemAuth extends BaseScheme
{
#[Field(type: 'int', length: 11, nullable: false, unsigned: true, autoIncrement: true, primary: true)]
public $id;
#[Field(type: 'char', length: 20, precision: 20, comment: '权限名称')]
public $title;
#[Field(type: 'int', length: 11, default: '100', comment: '排序')]
public $sort;
#[Field(type: 'int', length: 11, default: '0', comment: '状态')]
#[Component(type: 'radio', options: [1 => '禁用', 2 => '启用'])]
public $status;
#[Field(type: 'char', length: 255, precision: 255, default: '', comment: '备注说明')]
public $remark;
#[Field(type: 'int', length: 11, default: '0', comment: '创建时间', unsigned: true)]
public $create_time;
#[Field(type: 'int', length: 11, default: '0', unsigned: true)]
public $update_time;
#[Field(type: 'int', length: 11, default: '0', unsigned: true)]
public $delete_time;
}