%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
<?php
namespace frontend\models;
use Yii;
/**
* This is the model class for table "document_type".
*
* @property int $id
* @property string $second_id
* @property int $parent_id
* @property string $name
* @property string $singkatan
* @property string|null $status
* @property int|null $integrasi
* @property int|null $created_by
* @property int|null $updated_by
* @property string|null $created_at
* @property string|null $updated_at
*/
class DocumentType extends \yii\db\ActiveRecord
{
/**
* {@inheritdoc}
*/
public static function tableName()
{
return 'document_type';
}
/**
* {@inheritdoc}
*/
public function rules()
{
return [
[['second_id', 'parent_id', 'name', 'singkatan'], 'required'],
[['parent_id', 'integrasi', 'created_by', 'updated_by'], 'integer'],
[['created_at', 'updated_at'], 'safe'],
[['second_id', 'name', 'singkatan', 'status'], 'string', 'max' => 255],
];
}
/**
* {@inheritdoc}
*/
public function attributeLabels()
{
return [
'id' => 'ID',
'second_id' => 'Second ID',
'parent_id' => 'Parent ID',
'name' => 'Name',
'singkatan' => 'Singkatan',
'status' => 'Status',
'integrasi' => 'Integrasi',
'created_by' => 'Created By',
'updated_by' => 'Updated By',
'created_at' => 'Created At',
'updated_at' => 'Updated At',
];
}
}