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.
HENGCHENG/DSWeb/Models/CodeOweFeeModuleDetailEntit...

66 lines
1.4 KiB
C#

using System;
using System.Data;
namespace DSWeb.Models
{
/// <summary>
/// 客户对账横向模板表
/// </summary>
public class CodeOweFeeModuleDetailEntity
{
public CodeOweFeeModuleDetailEntity()
{
}
private string _gid;
/// <summary>
/// 唯一编号
/// </summary>
public string GID
{
get { return _gid; }
set { _gid = value; }
}
private string _linkgid;
/// <summary>
/// 关联的模板编号
/// </summary>
public string LINKGID
{
get { return _linkgid; }
set { _linkgid = value; }
}
private string _fields;
/// <summary>
/// 字段名称
/// </summary>
public string FIELDS
{
get { return _fields; }
set { _fields = value; }
}
private string _fieldname;
/// <summary>
/// 字段对应的中文名称
/// </summary>
public string FIELDNAME
{
get { return _fieldname; }
set { _fieldname = value; }
}
private Boolean _ISFEEFIELD;
/// <summary>
/// 字段名称
/// </summary>
public Boolean ISFEEFIELD
{
get { return _ISFEEFIELD; }
set { _ISFEEFIELD = value; }
}
}
}