| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- namespace ghs\models\Admin;
- /**
- * 更新管理员信息表单模型
- */
- class UpdateAdminForm extends BaseForm
- {
- /**
- * @var string 微信小程序OpenID
- */
- public $ghsOpenId;
-
- /**
- * @var string 管理员姓名
- */
- public $name;
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [['ghsOpenId'], 'string', 'max' => 64],
- [['name'], 'string', 'max' => 50],
- [['name'], 'trim'],
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'ghsOpenId' => '微信小程序OpenID',
- 'name' => '管理员姓名',
- ];
- }
- }
|