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.
|
|
using System;using System.Collections.Generic;using System.ComponentModel.DataAnnotations;using System.Text;
namespace Shentun.Peis.ChargeReports{ public class GetProjectFeesReportRequestDto { /// <summary>
/// 项目类别ID
/// </summary>
public Guid? ItemTypeId { get; set; }
/// <summary>
/// 组合项目 可以多个
/// </summary>
public List<Guid> Asbitems { get; set; } = new List<Guid>();
/// <summary>
/// 开始日期
/// </summary>
[Required(ErrorMessage = "开始日期不能为空")] public string StartDate { get; set; }
/// <summary>
/// 结束日期
/// </summary>
[Required(ErrorMessage = "结束日期不能为空")] public string EndDate { get; set; } }}
|