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.
DS7/DSWeb/Models/JsonCodeStlmodeSetEntity.cs

54 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace DSWeb.Models
{
public class JsonCodeStlmodeSetEntity
{
public JsonCodeStlmodeSetEntity()
{
}
#region 读写属性
/// <summary>
/// 唯一编码
/// </summary>
private string _gid;
public string CodeStlmodeSet1
{
get { return _gid; }
set { _gid = value; }
}
/// <summary>
/// 结算方式编码
/// </summary>
private string _stlcode;
public string CodeStlmodeSet2
{
get { return _stlcode; }
set { _stlcode = value; }
}
/// <summary>
/// 结算方式
/// </summary>
private string _stlname;
public string CodeStlmodeSet3
{
get { return _stlname; }
set { _stlname = value; }
}
/// <summary>
/// 财务软件代码
/// </summary>
private string _financesoftcode;
public string CodeStlmodeSet4
{
get { return _financesoftcode; }
set { _financesoftcode = value; }
}
#endregion
}
}