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.
|
|
|
|
using System;
|
|
|
|
|
using System.Data;
|
|
|
|
|
|
|
|
|
|
namespace DSWeb.Models
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 客户对账横向模板表
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class CodeOweFeeModuleEntity
|
|
|
|
|
{
|
|
|
|
|
public CodeOweFeeModuleEntity()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string _gid;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 唯一编号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string GID
|
|
|
|
|
{
|
|
|
|
|
get { return _gid; }
|
|
|
|
|
set { _gid = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string _modulename;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 模块名
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string MODULENAME
|
|
|
|
|
{
|
|
|
|
|
get { return _modulename; }
|
|
|
|
|
set { _modulename = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string _tablename;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 表名
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string TABLENAME
|
|
|
|
|
{
|
|
|
|
|
get { return _tablename; }
|
|
|
|
|
set { _tablename = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string _createuser;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建人
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CREATEUSER
|
|
|
|
|
{
|
|
|
|
|
get { return _createuser; }
|
|
|
|
|
set { _createuser = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private DateTime _createtime;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// CREATETIME
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime CREATETIME
|
|
|
|
|
{
|
|
|
|
|
get { return _createtime; }
|
|
|
|
|
set { _createtime = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string _corpid;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// CORPID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CORPID
|
|
|
|
|
{
|
|
|
|
|
get { return _corpid; }
|
|
|
|
|
set { _corpid = value; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|