using System;
using System.Collections.Generic;
using System.Text;
namespace System.Model
{
[Serializable]
public partial class T_Sys_Area
{
///
/// 自增id
///
public int F_Id { get; set; }
///
/// 编号
///
public string F_Code { get; set; }
///
/// 地区
///
public string F_AreaName { get; set; }
///
/// 父级id
///
public int? F_ParentId { get; set; }
///
/// 父级编号
///
public string F_ParentCode { get; set; }
///
/// 类型 1省,2市,3县/区,4乡镇/街道
///
public int F_Level { get; set; }
///
/// 排序
///
public int? F_Sort { get; set; }
///
/// 备注
///
public string F_Remark { get; set; }
///
/// 状态
///
public int? F_State { get; set; }
///
/// 添加时间
///
public DateTime? F_CreateOn { get; set; }
///
/// 添加工号
///
public string F_CreateBy { get; set; }
///
/// 最后一次修改时间
///
public DateTime? F_LastModifyOn { get; set; }
///
/// 最后一次修改工号
///
public string F_LastModifyBy { get; set; }
///
/// 删除时间
///
public DateTime? F_DeleteOn { get; set; }
///
/// 删除工号
///
public string F_DeleteBy { get; set; }
}
}