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.

20 lines
490 B

4 weeks ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Shentun.Peis.LisRequests
  5. {
  6. public class GetSendLisRequestListInputDto
  7. {
  8. /// <summary>
  9. /// 人员id
  10. /// </summary>
  11. public Guid PatientRegisterId { get; set; }
  12. /// <summary>
  13. /// 执行状态 0-未发送 1-已发送 2-已签收 3-已接收结果
  14. /// 暂时只启用0 1
  15. /// </summary>
  16. public char ExecFlag { get; set; }
  17. }
  18. }