Your IP : 216.73.216.79


Current Path : /var/www/html/hr/models/
Upload File :
Current File : /var/www/html/hr/models/ClaimPaymentItem.php

<?php

namespace app\models;

use Yii;

/**
 * This is the model class for table "claim_payment_item".
 *
 * @property int $id
 * @property int $parent_id
 * @property int $claim_id
 */
class ClaimPaymentItem extends \yii\db\ActiveRecord
{
    /**
     * {@inheritdoc}
     */
    public static function tableName()
    {
        return 'claim_payment_item';
    }

    /**
     * {@inheritdoc}
     */
    public function rules()
    {
        return [
            [['parent_id', 'claim_id'], 'integer'],
        ];
    }

    /**
     * {@inheritdoc}
     */
    public function attributeLabels()
    {
        return [
            'id' => 'ID',
            'parent_id' => 'Parent ID',
            'claim_id' => 'Claim ID',
        ];
    }
}