- 七牛云资源添加前缀区分

This commit is contained in:
gazebo
2019-05-24 17:38:16 +08:00
parent cc43c1429f
commit e94361295f
3 changed files with 3 additions and 3 deletions

View File

@@ -481,7 +481,7 @@ func (c *OrderManager) ExportOrders(ctx *jxcontext.Context, fromDateStr, toDateS
keyPart = append(keyPart, toDateStr)
}
keyPart = append(keyPart, time.Now().Format("20060102T150405")+".xlsx")
key := strings.Join(keyPart, "_")
key := "export/" + strings.Join(keyPart, "_")
formUploader := storage.NewFormUploader(cfg)
ret := storage.PutRet{}
for i := 0; i < 3; i++ {