/////////////////////////////////////////////////////////////////////////////
|
// File Description : 默认值
|
// Copyright : joyin
|
// -------------------------------------------------------------------------
|
// Date Created : Mar 26, 2010
|
// Author : jiangxinjun
|
//
|
/////////////////////////////////////////////////////////////////////////////
|
|
using System;
|
|
namespace HH.WMS.Entitys.Common
|
{
|
/// <summary>
|
/// 默认值
|
/// </summary>
|
public static class DefaultData
|
{
|
/// <summary>
|
/// 默认数字
|
/// </summary>
|
public static readonly int INT = -1;
|
/// <summary>
|
/// 默认数字
|
/// </summary>
|
public static readonly Int32 INT32 = -1;
|
|
/// <summary>
|
/// 默认时间
|
/// </summary>
|
public static readonly DateTime DATETIME = DateTime.MinValue;
|
|
/// <summary>
|
/// 默认的DECIMAL
|
/// </summary>
|
public static readonly decimal DECIMAL = 0;
|
|
/// <summary>
|
/// 默认的double
|
/// </summary>
|
public static readonly double DOUBLE = 0;
|
|
/// <summary>
|
/// 默认long
|
/// </summary>
|
public static readonly long LONG = 0;
|
|
/// <summary>
|
/// 默认string
|
/// </summary>
|
public static readonly string STRING = "";
|
/// <summary>
|
/// 默认boolean
|
/// </summary>
|
public static readonly Boolean BOOLEAN = false;
|
}
|
}
|