mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
52 lines
1.6 KiB
PHP
52 lines
1.6 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_ulthon_demo_goods_batch', comment: '')]
|
|
class UlthonDemoGoodsBatch extends BaseScheme
|
|
{
|
|
#[Field(type: 'int', length: 11, nullable: false, unsigned: true, autoIncrement: true, primary: true)]
|
|
public $id;
|
|
|
|
#[Field(type: 'int', length: 11, nullable: false, default: '0', unsigned: true)]
|
|
public $create_time;
|
|
|
|
#[Field(type: 'int', length: 11, nullable: false, default: '0', unsigned: true)]
|
|
public $update_time;
|
|
|
|
#[Field(type: 'int', length: 11, nullable: false, default: '0', unsigned: true)]
|
|
public $delete_time;
|
|
|
|
#[Field(type: 'bigint', length: 11, unsigned: true)]
|
|
public $goods_id;
|
|
|
|
#[Field(length: 100, precision: 100, default: '', comment: '批次名称')]
|
|
public $title;
|
|
|
|
#[Field(length: 100, precision: 100, default: '', comment: '批次编号')]
|
|
public $num;
|
|
|
|
#[Field(type: 'tinyint', length: 11, default: '1', comment: '状态', unsigned: true)]
|
|
#[Component(type: 'switch', options: ['关闭', '开启'])]
|
|
public $status;
|
|
|
|
#[Field(length: 100, precision: 100, default: '', comment: '备注')]
|
|
#[Component(type: 'textarea', options: [])]
|
|
public $comment;
|
|
|
|
#[Field(type: 'bigint', length: 11, default: '0', comment: '库存')]
|
|
public $stock;
|
|
|
|
#[Field(length: 100, precision: 100, comment: '包装')]
|
|
#[Component(type: 'image', options: [])]
|
|
public $title_image;
|
|
|
|
#[Field(length: 100, precision: 100)]
|
|
public $add_flag;
|
|
} |