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.

39 lines
863 B

using System;
using System.Collections.Generic;
using System.Text;
namespace Shentun.Peis.ThirdInterfaces
{
public class UpdateThirdInterfaceDto
{
/// <summary>
/// 主键ID
/// </summary>
public Guid Id { get; set; }
/// <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; }
}
}