update from old git

This commit is contained in:
2025-09-04 18:30:54 +08:00
parent af2c152ef6
commit 61502cb3bd
46 changed files with 6420 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
/// <summary>
/// GuaDanOrder 的摘要描述
/// </summary>
namespace Model
{
public partial class GuaDanOrder
{
public static string GenerateStatusCode()
{
string prefix = "GD";
string datePart = DateTime.Now.ToString("yyyyMMdd");
string randomPart = Guid.NewGuid().ToString("N").Substring(0, 4).ToUpper();
return $"{prefix}{datePart}-{randomPart}";
}
}
}