1. 插入
PUT /<index>/_doc/<_id>
 
POST /<index>/_doc/
 
PUT /<index>/_create/<_id>
 
POST /<index>/_create/<_id>
PUT /index/_doc/0053
{
  "account" :  "0053",
  "code"    :  "100100010510",
  "name"    :  "张三啦啦啦啦啦啦啦啦啦",
  "type"    :  1,
  "pcode"   :  "CMB008BA",
  "bcode"   :  "CCB",
  "b_no"    :  "6214****5320",
  "mobile"  :  "199****0909",
  "ccode" :  "654*********091X",
  "ctype" :  "0"
}
  1. 删除
DELETE /<index>/_doc/<_id>
  1. 批量插入
POST /<index>/_bulk
{"create": {"_id": 1}}
{"data1": "data", "data2": "test"}
{"create": {"_id": 2}}
{"data1": "data1", "data2": "test1"}