mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
24 lines
544 B
PHP
24 lines
544 B
PHP
<?php
|
|
|
|
namespace base\common\scheme\attribute;
|
|
|
|
use Attribute;
|
|
|
|
#[Attribute(Attribute::TARGET_PROPERTY)]
|
|
class Field
|
|
{
|
|
public function __construct(
|
|
public string $type = 'varchar',
|
|
public ?int $length = null,
|
|
public int $precision = 0,
|
|
public int $scale = 0,
|
|
public bool $nullable = true,
|
|
public mixed $default = null,
|
|
public string $comment = '',
|
|
public bool $unsigned = false,
|
|
public bool $autoIncrement = false,
|
|
public bool $primary = false
|
|
) {
|
|
}
|
|
}
|