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 }