123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- namespace app\modules\car\models;
- use Yii;
- /**
- * This is the model class for table "{{%f_input_rps_man_info}}".
- *
- * @property int $id 序号
- * @property string|null $city 地市
- * @property string|null $sec_dpt 二级单位
- * @property string|null $grid 网格
- * @property string|null $name 姓名
- * @property string|null $num 电话
- */
- class FInputRpsManInfo extends \app\common\models\EActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return '{{%f_input_rps_man_info}}';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [['city', 'sec_dpt', 'grid', 'name', 'num'], 'string', 'max' => 255],
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'id' => '序号',
- 'city' => '地市',
- 'sec_dpt' => '二级单位',
- 'grid' => '网格',
- 'name' => '姓名',
- 'num' => '电话',
- ];
- }
- }
|