| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace addons\Wechat\merchant\forms;
- use Yii;
- use yii\base\Model;
- /**
- * Class PreviewForm
- * @package merchant\modules\wechat\models
- * @author jianyan74 <751393839@qq.com>
- */
- class PreviewForm extends Model
- {
- /**
- * @var int
- */
- public $type = 1;
- /**
- * @var
- */
- public $content;
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['content'], 'required'],
- [['type'], 'integer'],
- ];
- }
- public function attributeLabels()
- {
- return [
- 'type' => '类别',
- 'content' => '微信号/openid',
- ];
- }
- }
|