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.

26 lines
622 B

2 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Shentun.WebPeis.Models;
  4. public partial class AppointScheduleCustomerOrg
  5. {
  6. public Guid AppointScheduleCustomerOrgId { get; set; }
  7. public Guid CustomerOrgId { get; set; }
  8. public DateTime? StartDate { get; set; }
  9. public DateTime? StopDate { get; set; }
  10. public int? NumberLimit { get; set; }
  11. public DateTime? CreationTime { get; set; }
  12. public Guid? CreatorId { get; set; }
  13. public DateTime? LastModificationTime { get; set; }
  14. public Guid? LastModifierId { get; set; }
  15. public string? ConcurrencyStamp { get; set; }
  16. }