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.
28 lines
982 B
28 lines
982 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Shentun.Peis.PlugIns.Extensions.ImportPacsResults.Hzcy
|
|
{
|
|
public class ImportPacsResultInterfaceInput
|
|
{
|
|
public string tjNum { get; set; }
|
|
public string checkupItemId { get; set; }
|
|
public string organizeCode { get; set; }
|
|
public string examTypeCode { get; set; }
|
|
public string idCard { get; set; }
|
|
public string patientType { get; set; }
|
|
public string patientId { get; set; }
|
|
public string requestId { get; set; }
|
|
public string clinicId { get; set; }
|
|
public string hospizationId { get; set; }
|
|
public string visitId { get; set; }
|
|
public long? examRequestId { get; set; }
|
|
public string beginTime { get; set; }
|
|
public string endTime { get; set; }
|
|
public int pageNo { get; set; }
|
|
public int pageSize { get; set; }
|
|
}
|
|
}
|