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.
41 lines
923 B
41 lines
923 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.ThirdInterfaces
|
|
{
|
|
public class ThirdInterfaceDto : AuditedEntityDtoName
|
|
{
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string DisplayName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 接口类型
|
|
/// </summary>
|
|
public string ThirdInterfaceType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 配置参数
|
|
/// </summary>
|
|
public string ParmValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// 体检中心ID
|
|
/// </summary>
|
|
public Guid MedicalCenterId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否启用
|
|
/// </summary>
|
|
public char IsActive { get; set; }
|
|
|
|
|
|
public int DisplayOrder { get; set; }
|
|
|
|
|
|
}
|
|
}
|