LSFE/LSFE.Infrastructure/Dto/ApprovePlanDto.cs
2026-07-30 10:31:04 +08:00

20 lines
531 B
C#

using LSFE.Infrastructure.Converter;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
namespace LSFE.Infrastructure.Dto
{
public class ApprovePlanDto
{
[JsonConverter(typeof(GuidListConverter))]
public List<Guid> AppointmentIds { get; set; } = new();
public string? UserId { get; set; }
public string? MRPlanDate { get; set; }
public string? UpdatedBy { get; set; }
}
}