TimestampBehavior::class, 'value' => time() ] ]; } public function rules() { return [ [['is_delete', 'from_store_id', 'status', 'is_delete', 'result'], 'integer'], [['to_store_ids', 'imports'], 'string'], [['create_at', 'update_at'], 'safe'], ]; } public function attributeLabels() { return [ 'id' => 'ID', 'from_store_id' => '来源商城', 'to_store_ids' => '同步到商城,多个', 'status' => '状态, 0:未运行, 1:运行中, 2:排队中', 'create_at' => '创建时间', 'update_at' => '更新时间', 'is_delete' => '是否已删除', 'result' => '0:从未执行,1:执行成功, 2:执行失败', 'imports' => '导入的配置信息' ]; } }