using System; using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; using Volo.Abp.Domain.Entities; namespace Shentun.WebPeis.Models; /// /// 预约计划明细表 /// public partial class AppointScheduleTime : AuditedEntity, IHasConcurrencyStamp { /// /// 主键 /// public Guid AppointScheduleTimeId { get; set; } /// /// 开始时间 /// public TimeOnly StartTime { get; set; } /// /// 结束时间 /// public TimeOnly StopTime { get; set; } /// /// 数量限制 /// public int NumberLimit { get; set; } /// /// 已预约数 /// public int AppointNumber { get; set; } public string? ConcurrencyStamp { get; set; } public Guid AppointScheduleId { get; set; } public virtual AppointSchedule AppointSchedule { get; set; } public override object[] GetKeys() { return [AppointScheduleTimeId]; } }