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/Areas/MvcShipping/Models/MsRptOpProfitZou/MsRptOpProfitZou.cs

45 lines
1022 B
C#

2 years ago
using System;
using HcUtility.Core;
using Newtonsoft.Json;
namespace DSWeb.MvcShipping.Models.MsRptOpProfitZou
{
[JsonObject]
public class ZouMonthDataSet
{
#region private Fields
private string _MONTHNAME = String.Empty;
private int _MONTHNO = 0;
private decimal _MONTHNUM = 0;
#endregion
#region Public Properties
public string MONTHNAME
{
get { return _MONTHNAME; }
set { _MONTHNAME = value; }
}
public int MONTHNO
{
get { return _MONTHNO; }
set { _MONTHNO = value; }
}
public decimal MONTHNUM
{
get { return _MONTHNUM; }
set { _MONTHNUM = value; }
}
public decimal OBJNUMRMB { get; set; }
public decimal OBJNUMUSD { get; set; }
#endregion
}
#region 参照部分
public class MsOpSeaiDetailRefMsOpSeai
{
public string BSNO { get; set; }
}
#endregion
}