using System;
namespace FineAdmin.Common
{
public class Common
{
#region 自动生成编号
///
/// 表示全局唯一标识符 (GUID)。
///
///
public static string GuId()
{
return Guid.NewGuid().ToString();
}
///
/// 自动生成编号 201008251145409865
///
///
public static string CreateNo()
{
Random random = new Random();
string strRandom = random.Next(1000, 10000).ToString(); //生成编号
string code = DateTime.Now.ToString("yyyyMMddHHmmss") + strRandom;//形如
return code;
}
#endregion
}
}