1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- namespace common\models;
- use Yii;
- /**
- * This is the model class for table "{{%building}}".
- *
- * @property string $id
- * @property integer $uid
- * @property integer $type
- * @property string $latitude
- * @property string $longitude
- * @property string $city
- * @property string $district
- * @property string $address
- */
- class Share extends \yii\db\ActiveRecord
- {
- const STATUS_YES = 10;//工地类型
- const STATUS_NO = 0;//样板房类型
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%share}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['role', 'name', 'tel'], 'required'],
- [['c_time'], 'integer'],
- [['c_time'], 'default','value'=>time()],
- [['name','tel'], 'string', 'max' => 32],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'role' => 'role',
- 'name' => 'name',
- 'tel' => 'tel',
- 'c_time' => 'c_time',
- 'status' => 'Status',
- ];
- }
- }
|