| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- namespace addons\Community\common\models;
- use Yii;
- /**
- * This is the model class for table "qimall_addons_community_head_check".
- *
- * @property int $id 主键
- * @property int $status 状态[-1:删除;0:禁用;1启用]
- * @property int $created_at 创建时间
- * @property int $updated_at 修改时间
- * @property int $mall_id 所属商城
- * @property int $apply_id 申请ID
- * @property int $admin_id 管理员ID
- * @property string $remark 审核备注
- * @property int $check_status 审核后状态
- */
- class CommunityHeadCheck extends \common\models\base\BaseActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return 'qimall_addons_community_head_check';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [['status', 'created_at', 'updated_at', 'mall_id', 'apply_id', 'admin_id', 'check_status'], 'integer'],
- [['remark'], 'string', 'max' => 255]
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'status' => 'Status',
- 'created_at' => 'Created At',
- 'updated_at' => 'Updated At',
- 'mall_id' => 'Mall ID',
- 'apply_id' => 'Apply ID',
- 'admin_id' => 'Admin ID',
- 'remark' => 'Remark',
- 'check_status' => 'Check Status',
- ];
- }
- }
|