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.
|
|
using System;using System.Collections.Generic;using System.ComponentModel.DataAnnotations.Schema;using System.ComponentModel.DataAnnotations;using System.Text;
namespace Shentun.Peis.SysParmValues{ public class UpdateSysParmValueManyRequestDto { /// <summary>
/// 参数类别ID
/// </summary>
[Required(ErrorMessage ="参数类别不能为空")] public string SysParmTypeId { get; set; }
/// <summary>
/// 参数值详细
/// </summary>
public List<UpdateSysParmValueManyRequest_Detail> Details { get; set; } = new List<UpdateSysParmValueManyRequest_Detail>(); }
/// <summary>
///
/// </summary>
public class UpdateSysParmValueManyRequest_Detail { /// <summary>
/// 系统参数ID
/// </summary>
public string SysParmId { get; set; }
/// <summary>
///体检中心ID (全局参数为00000000-0000-0000-0000-000000000000)
/// </summary>
public Guid MedicalCenterId { get; set; }
/// <summary>
/// 参数值
/// </summary>
public string? ParmValue { get; set; }
/// <summary>
/// 参数值备注
/// </summary>
public string? Remark { get; set; } }}
|