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.
|
|
|
|
namespace DcmToPng.Helper
|
|
|
|
|
{
|
|
|
|
|
public static class Constant
|
|
|
|
|
{
|
|
|
|
|
public static readonly string UserName = "XBDLISUser";
|
|
|
|
|
public static readonly string Password = "BlueFlag.Lis!@#";
|
|
|
|
|
|
|
|
|
|
public static readonly string DcmPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "DicomFiles/");
|
|
|
|
|
public static readonly string ImgPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "DicomImages/");
|
|
|
|
|
|
|
|
|
|
// 德宏中医
|
|
|
|
|
public static readonly string ConnectionString = @"Data Source=200.200.200.71;Initial Catalog=peisdb;User ID=sa;Password=wVJeC28@eY*&F#5NGL^eYC3m;";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// PACS报告中已选的图片
|
|
|
|
|
public static readonly string SqlInsert = @"INSERT INTO Exam_PacsImage (Image,EID,ReportNo,InTime) VALUES (@ImageData,@EID,@ReportNo,@InTime); INSERT INTO Report_Pacs(Image, EID, ReportNo, InTime) VALUES(@ImageData, @EID, @ReportNo, @InTime);";
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|