<?php

namespace app\common\model;
use think\Model;

class ProjectStatus extends Model
{
    protected $pk = 'key';
    
    protected $schema = [
        'key'    => 'varchar',   // 键
        'value'  => 'varchar',   // 值
    ];
}