You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
400 B
17 lines
400 B
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 |
|
}
|
|
|