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.
19 lines
436 B
19 lines
436 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.RegisterAsbitems
|
|
{
|
|
public class MergeRegisterAsbitemDto
|
|
{
|
|
/// <summary>
|
|
/// 包含所有新旧一起
|
|
/// </summary>
|
|
public List< Guid> RegisterAsbitemIds { get; set; }
|
|
|
|
/// <summary>
|
|
/// 体检中心ID
|
|
/// </summary>
|
|
public Guid OrganizationUnitId { get; set; }
|
|
}
|
|
}
|