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
20 lines
490 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.LisRequests
|
|
{
|
|
public class GetSendLisRequestListInputDto
|
|
{
|
|
/// <summary>
|
|
/// 人员id
|
|
/// </summary>
|
|
public Guid PatientRegisterId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 执行状态 0-未发送 1-已发送 2-已签收 3-已接收结果
|
|
/// 暂时只启用0 1
|
|
/// </summary>
|
|
public char ExecFlag { get; set; }
|
|
}
|
|
}
|