add import card rfid key

This commit is contained in:
2016-01-07 16:31:06 +01:00
parent 39ae361505
commit d2bc8076ca
3 changed files with 276 additions and 151 deletions

View File

@@ -0,0 +1,30 @@
<?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 \Yii\web\UploadedFile $file
*/
class CardImportRfidForm extends Model{
public $file;
public $message;
public function rules(){
return [
[['file'], 'file']
];
}
}