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