| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?php
- namespace app\models;
- use yii\behaviors\TimestampBehavior;
- use yii\db\ActiveRecord;
- /**
- * Class StoreMedia
- * @package app\models
- * @property integer $id
- * @property integer $store_id
- * @property integer $mini_id
- * @property string $task_id
- * @property integer $is_finish
- * @property integer $face_status
- * @property string $face_time
- * @property string $created_at
- * @property string $updated_at
- * @property integer $is_delete
- * @property string $icp_form
- * @property integer $icp_audit_status
- * @property string $icp_audit_info
- * @property integer $is_cancel_icp
- **/
- class StoreMiniIcp extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%store_mini_icp}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [["id", "store_id", "mini_id", 'is_finish', 'face_status', 'icp_audit_status', 'is_cancel_icp', 'is_delete'], 'integer'],
- [["task_id", 'icp_form', 'icp_audit_info'], 'string'],
- [['created_at', 'updated_at', 'face_time'], 'safe']
- ];
- }
- public function behaviors()
- {
- return [
- [
- 'class' => TimestampBehavior::class
- ]
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- "id" => "ID",
- "store_id" => "",
- "mini_id" => "",
- "task_id" => "人脸核验任务id",
- "is_finish" => "人脸核身任务是否已完成 0未完成 1已完成 ",
- "face_status" =>"is_finish 字段,如果为 true,表明人脸核身任务已完成,face_status 已到达最终状态,不会再变化",
- 'icp_form' => 'icp表单',
- 'icp_audit_status' => '备案状态 -1未申请 2平台审核中 3平台审核驳回 4管局审核中 5管局审核驳回 6已备案 1024未备案 1025未备案 && 小程序基本信息未填 1026未备案 && 小程序类目未填 1027未备案 8& 小程序基本信息未填 8& 小程序类目未填',
- 'icp_audit_info' => '备案状态失败信息',
- 'is_cancel_icp' => '是否注销小程序备案'
- ];
- }
- }
|