generatePlanID 生成计划ID
()
| 282 | |
| 283 | // generatePlanID 生成计划ID |
| 284 | func generatePlanID() string { |
| 285 | return "plan_" + time.Now().Format("20060102150405") + "_" + randomString(6) |
| 286 | } |
| 287 | |
| 288 | // generateStepID 生成步骤ID |
| 289 | func generateStepID() string { |
no test coverage detected