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.
38 lines
802 B
C#
38 lines
802 B
C#
using System;
|
|
using System.Data;
|
|
using System.Collections;
|
|
|
|
namespace DSWeb.Models
|
|
{
|
|
public class InvoiceConfigEntity
|
|
{
|
|
#region 私有成员
|
|
private string _item_name;//配置节名称
|
|
private string _item_value;//配置节值
|
|
#endregion
|
|
|
|
public InvoiceConfigEntity()
|
|
{
|
|
}
|
|
|
|
#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
|
|
}
|
|
}
|