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.
48 lines
1005 B
C#
48 lines
1005 B
C#
using System;
|
|
using System.Data;
|
|
|
|
namespace DSWeb.Models
|
|
{
|
|
public class CodeSourceEntity
|
|
{
|
|
#region 私有成员
|
|
private string _gid;//主键唯一值
|
|
private string _source_name;//市场来源名称
|
|
private string _corp_id;//分公司GID
|
|
#endregion
|
|
|
|
public CodeSourceEntity()
|
|
{
|
|
}
|
|
|
|
#region 读写属性
|
|
/// <summary>
|
|
/// 主键唯一值
|
|
/// </summary>
|
|
public string GID
|
|
{
|
|
get { return _gid; }
|
|
set { _gid = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 市场来源名称
|
|
/// </summary>
|
|
public string SourceName
|
|
{
|
|
get { return _source_name;}
|
|
set { _source_name = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 分公司GID
|
|
/// </summary>
|
|
public string CorpID
|
|
{
|
|
get { return _corp_id; }
|
|
set { _corp_id = value; }
|
|
}
|
|
#endregion
|
|
}
|
|
}
|