using System;
namespace NXWMS.DataAccess.Entity
{
//区域信息表
public class BAS_AREA : ModelBase
{
///
/// 系统主键
///
public int AREA_ID { get; set; }
///
/// NewId主键
///
public string NEWID { get; set; }
///
/// 区域编码
///
public string AREA_CODE { get; set; }
///
/// 区域名称
///
public string AREA_NAME { get; set; }
///
/// 描述
///
public string DESCRIBE { get; set; }
///
/// 使用标识。0:禁用;1:启用。
///
public int USED_FLAG { get; set; }
///
/// 删除标识。0:未删除;1:已删除。
///
public int DEL_FLAG { get; set; }
}
}