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.
73 lines
1.6 KiB
C#
73 lines
1.6 KiB
C#
using System;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.Areas.CommMng.Models
|
|
{
|
|
[JsonObject]
|
|
public class CwAccitemsCurrencyModel
|
|
{
|
|
#region 读写属性
|
|
private string _gid = Guid.NewGuid().ToString();
|
|
/// <summary>
|
|
/// 唯一编码
|
|
/// </summary>
|
|
public string GID
|
|
{
|
|
get { return _gid; }
|
|
set { _gid = value; }
|
|
}
|
|
|
|
private string _linkgid = "";
|
|
/// <summary>
|
|
/// 科目GID
|
|
/// </summary>
|
|
public string LINKGID
|
|
{
|
|
get { return _linkgid; }
|
|
set { _linkgid = value; }
|
|
}
|
|
|
|
private string _currency = "";
|
|
/// <summary>
|
|
/// 币别
|
|
/// </summary>
|
|
public string CURRENCY
|
|
{
|
|
get { return _currency; }
|
|
set { _currency = value; }
|
|
}
|
|
|
|
private string _corpid = "";
|
|
/// <summary>
|
|
/// 分公司代码
|
|
/// </summary>
|
|
public string CORPID
|
|
{
|
|
get { return _corpid; }
|
|
set { _corpid = value; }
|
|
}
|
|
|
|
private string _createuser = "";
|
|
/// <summary>
|
|
/// 创建人gid
|
|
/// </summary>
|
|
public string CREATEUSER
|
|
{
|
|
get { return _createuser; }
|
|
set { _createuser = value; }
|
|
}
|
|
|
|
private DateTime _createtime = DateTime.Now;
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public DateTime CREATETIME
|
|
{
|
|
get { return _createtime; }
|
|
set { _createtime = value; }
|
|
}
|
|
#endregion
|
|
}
|
|
}
|