using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Models
{
///
/// 年月类
///
public class YearMonth
{
string yearMonths;
///
/// 年月
///
public string YearMonths
{
get { return yearMonths; }
set { yearMonths = value; }
}
}
}