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.
D7QUANTAI/DSWeb/Models/CodeStlmodeSetEntity.cs

52 lines
1.2 KiB
C#

10 months ago
using System;
using System.Data;
namespace DSWeb.Models
{
public class CodeStlmodeSetEntity
{
public CodeStlmodeSetEntity()
{
}
#region 读写属性
/// <summary>
/// 唯一编码
/// </summary>
private string _gid;
public string GID
{
get { return _gid; }
set { _gid = value; }
}
/// <summary>
/// 结算方式编码
/// </summary>
private string _stlcode;
public string STLCODE
{
get { return _stlcode; }
set { _stlcode = value; }
}
/// <summary>
/// 结算方式
/// </summary>
private string _stlname;
public string STLNAME
{
get { return _stlname; }
set { _stlname = value; }
}
/// <summary>
/// 财务软件代码
/// </summary>
private string _financesoftcode;
public string FINANCESOFTCODE
{
get { return _financesoftcode; }
set { _financesoftcode = value; }
}
#endregion
}
}