38 lines
734 B
C#
38 lines
734 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using WMS.Attirubte;
|
|
using System.ComponentModel;
|
|
|
|
namespace WMS.Model.Report
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[Serializable]
|
|
public class ReportModel
|
|
{
|
|
#region Model
|
|
private decimal _num;
|
|
private DateTime _date;
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public decimal NUM
|
|
{
|
|
set { _num = value; }
|
|
get { return _num; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public DateTime DATE
|
|
{
|
|
set { _date = value; }
|
|
get { return _date; }
|
|
}
|
|
#endregion Model
|
|
}
|
|
}
|