using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.Solution
{
public class QuestionDateResult
{
///
/// 年
///
public int DataYear { get; set; }
///
/// 月
///
public int DataMonth { get; set; }
///
/// 数据条数
///
public int DataCount { get; set; }
}
}