You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
705 B
27 lines
705 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.ChargeReports
|
|
{
|
|
public class GetSummaryOfDepartmentalFeesReportRequestDto
|
|
{
|
|
/// <summary>
|
|
/// 项目类别ID
|
|
/// </summary>
|
|
public Guid? ItemTypeId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 开始日期
|
|
/// </summary>
|
|
[Required(ErrorMessage = "开始日期不能为空")]
|
|
public string StartDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结束日期
|
|
/// </summary>
|
|
[Required(ErrorMessage = "结束日期不能为空")]
|
|
public string EndDate { get; set; }
|
|
}
|
|
}
|