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.
50 lines
1.0 KiB
50 lines
1.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|
using Volo.Abp.Domain.Entities;
|
|
|
|
namespace Shentun.WebPeis.Models;
|
|
|
|
/// <summary>
|
|
/// 预约计划明细表
|
|
/// </summary>
|
|
public partial class AppointScheduleTime : AuditedEntity, IHasConcurrencyStamp
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public Guid AppointScheduleTimeId { get; set; }
|
|
/// <summary>
|
|
/// 开始时间
|
|
/// </summary>
|
|
|
|
public TimeOnly StartTime { get; set; }
|
|
/// <summary>
|
|
/// 结束时间
|
|
/// </summary>
|
|
|
|
public TimeOnly StopTime { get; set; }
|
|
/// <summary>
|
|
/// 数量限制
|
|
/// </summary>
|
|
|
|
public int NumberLimit { get; set; }
|
|
/// <summary>
|
|
/// 已预约数
|
|
/// </summary>
|
|
|
|
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];
|
|
}
|
|
}
|