54 lines
1.5 KiB
C#
54 lines
1.5 KiB
C#
|
|
//--------------------------------------------------------------------
|
|
// 此代码由liquid模板自动生成 byzhouhang 20240909
|
|
// 生成时间 2025-03-21 01:28:34Z
|
|
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
|
//--------------------------------------------------------------------
|
|
using System;
|
|
using IRaCIS.Core.Domain.Share;
|
|
using System.Collections.Generic;
|
|
namespace IRaCIS.Core.Application.ViewModel;
|
|
|
|
public class HIRHospitalView : HIRHospitalAddOrEdit
|
|
{
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
public DateTime UpdateTime { get; set; }
|
|
}
|
|
|
|
|
|
public class HIRHospitalAddOrEdit
|
|
{
|
|
public Guid? Id { get; set; }
|
|
|
|
public string HospitalName { get; set; }
|
|
public string HospitalAliasName { get; set; }
|
|
public string Country { get; set; }
|
|
public string City { get; set; }
|
|
public string Province { get; set; }
|
|
public string Address { get; set; }
|
|
public string Phone { get; set; }
|
|
|
|
public bool IsCanConnectInternet { get; set; }
|
|
|
|
public string HospitalCode { get; set; }
|
|
public string HospitalLogoPath { get; set; }
|
|
public int TrialKeepCount { get; set; }
|
|
|
|
public bool IsDefault { get; set; }
|
|
}
|
|
|
|
public class HIRHospitalQuery : PageInput
|
|
{
|
|
public string HospitalName { get; set; }
|
|
public string Country { get; set; }
|
|
public string City { get; set; }
|
|
public string Province { get; set; }
|
|
public string Address { get; set; }
|
|
public string Phone { get; set; }
|
|
}
|
|
|
|
|
|
|
|
|