nicolachoquet06250/php-lib-orm

nicolachoquet06250/php-lib 库的 ORM 模块

1.1.1 2021-05-31 14:39 UTC

This package is auto-updated.

Last update: 2024-09-29 05:43:12 UTC


README

nicolachoquet06250/php-lib 库的 ORM 模块

文档

  • 创建模型
<?php

use PhpLib\ORM\Model;
use PhpLib\ORM\decorators\{
    Entity, Column, AutoIncrement, 
    PrimaryKey, DefaultValue,
    types\Integer, types\DateTime, 
    types\NotNull
};

#[Entity('table-name')]
class MaTable extends Model {
    #[
        Column('id'),
        Integer(11),
        AutoIncrement(),
        PrimaryKey()
    ]
    public int $id; 
    
    #[
        Column(),
        DateTime(),
        DefaultValue('NOW()'),
        NotNull()
    ]
    public string $created_at;
}