b0y-101 Mini Shell


Current Path : E:/www/b-group.old/business/applicationmba/common/models/
File Upload :
Current File : E:/www/b-group.old/business/applicationmba/common/models/Capitalletters.php

<?php

namespace common\models;

use Yii;

/**
 * This is the model class for table "tb_capitalletters".
 *
 * @property integer $ID
 * @property string $titlenamethai
 * @property string $titlenameeng
 */
class Capitalletters extends \yii\db\ActiveRecord
{
    /**
     * @inheritdoc
     */
    public static function tableName()
    {
        return 'tb_capitalletters';
    }

    /**
     * @inheritdoc
     */
    public function rules()
    {
        return [
            [['titlenamethai', 'titlenameeng'], 'required'],
            [['titlenamethai', 'titlenameeng'], 'string', 'max' => 500],
        ];
    }

    /**
     * @inheritdoc
     */
    public function attributeLabels()
    {
        return [
            'ID' => 'ID',
            'titlenamethai' => 'คำนำหน้าภาษาไทย',
            'titlenameeng' => 'คำนำหน้าภาษาอังกฤษ',
        ];
    }
}

Copyright © 2019 by b0y-101