using System;
using System.Data;
using EAS.Data;
using EAS.Data.Access;
using EAS.Data.ORM;
using System.Xml.Serialization;
namespace SOH.Entities
{
///
/// 实体对象 t_htfzb(t_htfzb)。
///
public partial class t_htfzb: DataEntity
{
public override string ToString()
{
return this.htfzmc;
//return base.ToString();
}
[XmlIgnore]
public string tjlbmc
{
get {
if (this.tjlb == 1)
{
return "VIP客户";
}
else if (this.tjlb == 2)
{
return "贵宾客户";
}
else
{
return "普通客户";
}
}
}
}
}