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