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