irc-netcore-api/IRaCIS.Core.Application/Service/Visit/DTO/HospitalGroupViewModel.cs

53 lines
1.2 KiB
C#

//--------------------------------------------------------------------
// 此代码由liquid模板自动生成 byzhouhang 20240909
// 生成时间 2025-08-18 03:23:09Z
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
//--------------------------------------------------------------------
using System;
using IRaCIS.Core.Domain.Share;
using System.Collections.Generic;
namespace IRaCIS.Core.Application.ViewModel;
public class HospitalGroupView : HospitalGroupAddOrEdit
{
public DateTime CreateTime { get; set; }
public DateTime UpdateTime { get; set; }
}
public class HospitalGroupAddOrEdit
{
public Guid? Id { get; set; }
public string Affiliation { get; set; }
public string Code { get; set; }
public string ContactName { get; set; }
public string ContactPhone { get; set; }
public string Name { get; set; }
}
public class HospitalGroupQuery : PageInput
{
public string? Affiliation { get; set; }
public string? Code { get; set; }
public string? ContactName { get; set; }
public string? ContactPhone { get; set; }
public string? Name { get; set; }
}