123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- namespace common\models;
- use Yii;
- class CompanyApply extends \yii\db\ActiveRecord
- {
- const STATUS_REVIEW = 0;//等待审核中
- const STATUS_FAIL = -1;//审核失败
- const STATUS_SUCCESS = 10;//审核成功
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%company_apply}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- ['status', 'default', 'value' => self::STATUS_REVIEW],
- [['created_at','updated_at'],'default','value'=>time()],
- [['name', 'tel','created_at', 'status', 'updated_at'], 'required'],
- [['created_at', 'status', 'updated_at'], 'integer'],
- [['name','tel','username'], 'string', 'max' => 32],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'name'=>'公司名称',
- 'tel'=>'手机号',
- 'status' => 'Status',
- 'created_at' => '创建时间',
- 'updated_at' => 'Updated At',
- ];
- }
- }
|