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