using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
///
///
public class Month_DataFileTestInput : ObjectUnderCorpInput
{
///
/// 年
///
[Required]
public int Year { get; set; }
///
///月
///
[Required]
public int Month { get; set; }
///
///业务区域ID
///
[Required]
public int LogicAreaID{ get; set;}
}
}