using System; using System.Collections.Generic; namespace Shentun.WebPeis.Models; public partial class AppointScheduleCustomerOrg { public Guid AppointScheduleCustomerOrgId { get; set; } public Guid CustomerOrgId { get; set; } public DateTime? StartDate { get; set; } public DateTime? StopDate { get; set; } public int? NumberLimit { get; set; } public DateTime? CreationTime { get; set; } public Guid? CreatorId { get; set; } public DateTime? LastModificationTime { get; set; } public Guid? LastModifierId { get; set; } public string? ConcurrencyStamp { get; set; } }