|
- <?php
-
- namespace backend\modules\zzcs\models;
-
- use Yii;
-
- /**
- * This is the model class for table "opera_hotel_log".
- *
- * @property integer $ID
- * @property integer $CREATE_USER_ID
- * @property string $CREATE_TIME
- * @property integer $LOG_TYPE
- * @property integer $HOTEL_ID
- * @property integer $PARENT_ROOM_TYPE
- * @property integer $ROOM_TYPE
- * @property string $LOG_DESC
- * @property integer $ORDER_ID
- */
- class OperaHotelLog extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'opera_hotel_log';
- }
-
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['CREATE_USER_ID', 'LOG_TYPE', 'HOTEL_ID', 'PARENT_ROOM_TYPE', 'ROOM_TYPE', 'ORDER_ID'], 'integer'],
- [['CREATE_TIME'], 'required'],
- [['CREATE_TIME'], 'string', 'max' => 20],
- [['LOG_DESC'], 'string', 'max' => 200],
- ];
- }
-
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'ID' => 'ID',
- 'CREATE_USER_ID' => 'Create User ID',
- 'CREATE_TIME' => 'Create Time',
- 'LOG_TYPE' => 'Log Type',
- 'HOTEL_ID' => 'Hotel ID',
- 'PARENT_ROOM_TYPE' => 'Parent Room Type',
- 'ROOM_TYPE' => 'Room Type',
- 'LOG_DESC' => 'Log Desc',
- 'ORDER_ID' => 'Order ID',
- ];
- }
- }
|