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.
37 lines
780 B
C#
37 lines
780 B
C#
using System;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.MvcShipping.Models.RptCwGLDetailColumnChart
|
|
{
|
|
[JsonObject]
|
|
public class RptCwGLDetailColumnChart : ModelObjectBillHead
|
|
{
|
|
#region 读写属性
|
|
private string _OBJNAME = "";
|
|
/// <summary>
|
|
/// OBJNAME
|
|
/// </summary>
|
|
public string OBJNAME
|
|
{
|
|
get { return _OBJNAME; }
|
|
set { _OBJNAME = value; }
|
|
}
|
|
|
|
private string _OBJNUM = "";
|
|
/// <summary>
|
|
/// OBJNUM
|
|
/// </summary>
|
|
public string OBJNUM
|
|
{
|
|
get { return _OBJNUM; }
|
|
set { _OBJNUM = value; }
|
|
}
|
|
#endregion
|
|
|
|
public RptCwGLDetailColumnChart()
|
|
{
|
|
}
|
|
}
|
|
}
|