get('dbXcrm'); } public function rules() { return [ [['id', 'type', 'in_time'], 'integer'], [['title', 'content'], 'required'], [['content'], 'string'], [['title'], 'string', 'max' => '255'], ]; } public function attributeLabels() { return [ 'id' => 'ID', 'type' => '类型', 'title' => '标题', 'content' => '内容', 'in_time' => '发布时间', ]; } }