You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/DSCustomerWeb/Models/ChequeConfigEntity.cs

37 lines
774 B
C#

2 years ago
using System;
using System.Data;
namespace DSWeb.Models
{
public class ChequeConfigEntity
{
#region 私有成员
private string _item_name;//配置节名称
private string _item_value;//配置节值
#endregion
public ChequeConfigEntity()
{
}
#region 读写属性
/// <summary>
/// 配置节名称
/// </summary>
public string ItemName
{
get { return _item_name; }
set { _item_name = value; }
}
/// <summary>
/// 配置节值
/// </summary>
public string ItemValue
{
get { return _item_value; }
set { _item_value = value; }
}
#endregion
}
}