|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- package md
-
- const ZhiosTikTokTaskEsIndex = "zhios_tik_tok_task"
- const ZhiosTikTokTaskDetailEsIndex = "zhios_tik_tok_task_detail"
- const ZhiosTikTokTaskEsMapping = `
- {
- "settings" : {
- "number_of_shards" : 2,
- "number_of_replicas" : 1
- },
- "mappings":{
- "properties":{
- "task_ids":{
- "type": "text"
- }
- }
- }
- }`
- const ZhiosTikTokTaskDetailEsMapping = `
- {
- "settings" : {
- "number_of_shards" : 2,
- "number_of_replicas" : 1
- },
- "mappings":{
- "properties":{
- "appid":{
- "type": "keyword"
- },
- "task_start_time":{
- "type": "integer"
- },
- "task_end_time":{
- "type": "integer"
- },
- "page_type":{
- "type": "integer"
- },
- "start_page":{
- "type": "keyword"
- },
- "task_desc":{
- "type": "keyword"
- },
- "task_icon":{
- "type": "keyword"
- },
- "task_name":{
- "type": "keyword"
- },
- "anchor_title":{
- "type": "keyword"
- },
- "status":{
- "type": "integer"
- },
- "task_tags":{
- "type": "keyword"
- },
- "task_settle_type":{
- "type": "integer"
- },
- "task_id":{
- "type": "keyword"
- },
- "refer_ma_captures":{
- "type": "keyword"
- },
- "refer_video_captures":{
- "type": "keyword"
- },
- "refer_videos":{
- "type": "keyword"
- },
- "refer_gids":{
- "type": "keyword"
- },
- "task_refund_period":{
- "type": "integer"
- },
- "payment_allocate_ratio":{
- "type": "integer"
- },
- "platform_address_app":{
- "type": "keyword"
- },
- "platform_address_web":{
- "type": "keyword"
- },
- "reject_reason":{
- "type": "keyword"
- },
- "task_type":{
- "type": "integer"
- },
- "video_id":{
- "type": "integer"
- },
- "oriented_talent_rel_list":{
- "type": "text"
- }
-
- }
- }
- }`
|