PostSyntheticalReceivableByDateRangeDto.cs 524 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Dtos.Financial
  7. {
  8. public class PostSyntheticalReceivableByDateRangeDto:PortDtoBase
  9. {
  10. public int CurrUserId { get; set; }
  11. public string beginDt { get; set; }
  12. public string endDt { get; set; }
  13. /// <summary>
  14. /// 请求类型:1:查询数据,2:生成Excel
  15. /// </summary>
  16. public int requestType { get; set; }
  17. }
  18. }