mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 13:56:26 -05:00
18 lines
400 B
Go
18 lines
400 B
Go
|
|
package model
|
||
|
|
|
||
|
|
// UpsertParams .
|
||
|
|
type UpsertParams struct {
|
||
|
|
Business string `form:"business" validate:"required"`
|
||
|
|
DataStr string `form:"data" validate:"required"`
|
||
|
|
Insert bool `form:"insert" default:"false"`
|
||
|
|
UpsertBody []UpsertBody
|
||
|
|
}
|
||
|
|
|
||
|
|
// UpsertBody job的bulk优化参考这个模板 .
|
||
|
|
type UpsertBody struct {
|
||
|
|
IndexName string
|
||
|
|
IndexType string
|
||
|
|
IndexID string
|
||
|
|
Doc MapData
|
||
|
|
}
|