1 Star 0 Fork 60

我的电脑/phpapp

forked from 小肥羊/phpapp 
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
AnswerModel.php 610 Bytes
一键复制 编辑 原始数据 按行查看 历史
Mac 提交于 2019-12-13 17:00 +08:00 . update
<?php
namespace app\models;
use Yii;
use yii\db\ActiveRecord;
class AnswerModel extends \yii\db\ActiveRecord
{
/**
* @return array the validation rules.
*/
public function rules()
{
return [
[['qid','code', 'content', 'value'], 'required'],
['qid', 'string', 'length' => [1, 255]],
['code', 'string', 'length' => [1, 255]],
['content', 'string', 'length' => [0, 255]],
['value', 'string', 'length' => [1, 255]]
];
}
public static function tableName()
{
return 'answer';
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/y91/phpapp.git
git@gitee.com:y91/phpapp.git
y91
phpapp
phpapp
master

搜索帮助