add backend door log

This commit is contained in:
2017-01-12 22:34:06 +01:00
parent fa0eba3a11
commit c0d36c525e
7 changed files with 162 additions and 11 deletions

View File

@@ -0,0 +1,31 @@
<?php
namespace backend\models;
use Yii;
use yii\base\Model;
use common\models\Card;
use common\models\Customer;
use common\models\Ticket;
use common\models\Account;
use yii\web\UploadedFile;
/**
* ContactForm is the model behind the contact form.
* @property integer id_ticket
*/
class DoorMoveForm extends Model{
public $id_ticket;
public $message;
public function rules(){
return [
[['id_ticket'], 'required'],
[['id_ticket'], 'integer']
];
}
}