42 lines
838 B
C#
42 lines
838 B
C#
using System;
|
|
using System.Data;
|
|
using EAS.Data;
|
|
using EAS.Data.Access;
|
|
using EAS.Data.ORM;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace SOH.Entities
|
|
{
|
|
/// <summary>
|
|
/// 实体对象 t_htfzb(t_htfzb)。
|
|
/// </summary>
|
|
public partial class t_htfzb: DataEntity<t_htfzb>
|
|
{
|
|
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 "普通客户";
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|