新增管理员用户删除,修改反馈,任务列表

This commit is contained in:
chy
2025-06-17 18:26:39 +08:00
parent e21353df23
commit 876363f9b4
31 changed files with 352 additions and 110 deletions

View File

@ -50,3 +50,8 @@ func (c *snowClient) generateCodeWithPrefix(prefix string) (string, error) {
id := c.node.Generate().Int64()
return fmt.Sprintf("%s%d", prefix, id), nil
}
// GenerateSerialNumber 生成任务流水号
func (c *snowClient) GenerateSerialNumber() (string, error) {
return c.generateCodeWithPrefix("SN")
}