43 lines
1.0 KiB
C#
43 lines
1.0 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace AIMSObjectQuery
|
|
{
|
|
internal partial class ApplianceMap:IMap
|
|
{
|
|
private Dictionary<string, string> dictionary = new Dictionary<string, string>();
|
|
public ApplianceMap()
|
|
{
|
|
dictionary.Add("id", "Id");
|
|
dictionary.Add("name", "Name");
|
|
dictionary.Add("hcode", "HCode");
|
|
dictionary.Add("appliancetype", "ApplianceType");
|
|
dictionary.Add("userate", "UseRate");
|
|
dictionary.Add("isvalid", "IsValid");
|
|
dictionary.Add("operatorid", "OperatorId");
|
|
dictionary.Add("operatortime", "OperatorTime");
|
|
dictionary.Add("remark", "Remark");
|
|
}
|
|
|
|
#region IMap 成员
|
|
|
|
public string this[string propertyName]
|
|
{
|
|
get
|
|
{
|
|
try
|
|
{
|
|
return dictionary[propertyName.ToLower()];
|
|
}
|
|
catch (KeyNotFoundException)
|
|
{
|
|
throw new Exception(propertyName + "属性不存在");
|
|
}
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|