update ef-model
This commit is contained in:
@@ -441,6 +441,7 @@ namespace Model
|
||||
{
|
||||
this.members = new HashSet<member>();
|
||||
this.news = new HashSet<news>();
|
||||
this.GuaDanOrders = new HashSet<GuaDanOrder>();
|
||||
}
|
||||
|
||||
public int num { get; set; }
|
||||
@@ -475,6 +476,8 @@ namespace Model
|
||||
public virtual ICollection<member> members { get; set; }
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
||||
public virtual ICollection<news> news { get; set; }
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
||||
public virtual ICollection<GuaDanOrder> GuaDanOrders { get; set; }
|
||||
}
|
||||
}
|
||||
namespace Model
|
||||
@@ -765,6 +768,8 @@ namespace Model
|
||||
this.family_members = new HashSet<family_members>();
|
||||
this.transfer_register = new HashSet<transfer_register>();
|
||||
this.transfer_register1 = new HashSet<transfer_register>();
|
||||
this.GuaDanOrders = new HashSet<GuaDanOrder>();
|
||||
this.GuaDanOrderGuests = new HashSet<GuaDanOrderGuest>();
|
||||
}
|
||||
|
||||
public int num { get; set; }
|
||||
@@ -824,6 +829,10 @@ namespace Model
|
||||
public virtual ICollection<transfer_register> transfer_register { get; set; }
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
||||
public virtual ICollection<transfer_register> transfer_register1 { get; set; }
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
||||
public virtual ICollection<GuaDanOrder> GuaDanOrders { get; set; }
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
||||
public virtual ICollection<GuaDanOrderGuest> GuaDanOrderGuests { get; set; }
|
||||
}
|
||||
}
|
||||
namespace Model
|
||||
@@ -846,6 +855,68 @@ namespace Model
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public partial class GuaDanOrder
|
||||
{
|
||||
public Nullable<System.DateTime> StartDate { get; set; }
|
||||
public Nullable<System.DateTime> EndDate { get; set; }
|
||||
public Nullable<int> CreateUser { get; set; }
|
||||
public Nullable<System.DateTime> CreatedAt { get; set; }
|
||||
public Nullable<System.DateTime> UpdatedAt { get; set; }
|
||||
public string Notes { get; set; }
|
||||
public string GuaDanOrderNo { get; set; }
|
||||
public Nullable<int> BookerFollowerNum { get; set; }
|
||||
public string BookerName { get; set; }
|
||||
public string BookerPhone { get; set; }
|
||||
public bool IsDeleted { get; set; }
|
||||
public System.Guid Uuid { get; set; }
|
||||
|
||||
public virtual admin admin { get; set; }
|
||||
public virtual follower follower { get; set; }
|
||||
}
|
||||
}
|
||||
namespace Model
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public partial class GuaDanOrderGuest
|
||||
{
|
||||
public string GuaDanOrderNo { get; set; }
|
||||
public Nullable<int> FollowerNum { get; set; }
|
||||
public bool IsDeleted { get; set; }
|
||||
public System.Guid Uuid { get; set; }
|
||||
public Nullable<System.Guid> RoomUuid { get; set; }
|
||||
public Nullable<System.Guid> BedUuid { get; set; }
|
||||
public Nullable<System.DateTime> CheckInAt { get; set; }
|
||||
public Nullable<System.DateTime> CheckOutAt { get; set; }
|
||||
public Nullable<System.Guid> statusUuid { get; set; }
|
||||
|
||||
public virtual follower follower { get; set; }
|
||||
public virtual RegionRoomBed RegionRoomBed { get; set; }
|
||||
public virtual Room Room { get; set; }
|
||||
public virtual RegionRoomBedStatus RegionRoomBedStatus { get; set; }
|
||||
}
|
||||
}
|
||||
namespace Model
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public partial class GuadanTimeSetting
|
||||
{
|
||||
public System.Guid Id { get; set; }
|
||||
public string EarliestCheckIn { get; set; }
|
||||
public string LatestCheckOut { get; set; }
|
||||
public bool IsActive { get; set; }
|
||||
public Nullable<System.DateTime> CreatedAt { get; set; }
|
||||
public Nullable<System.DateTime> UpdatedAt { get; set; }
|
||||
}
|
||||
}
|
||||
namespace Model
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public partial class item
|
||||
{
|
||||
public int num { get; set; }
|
||||
@@ -1274,6 +1345,171 @@ namespace Model
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public partial class Region
|
||||
{
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
||||
public Region()
|
||||
{
|
||||
this.Region1 = new HashSet<Region>();
|
||||
this.Room = new HashSet<Room>();
|
||||
}
|
||||
|
||||
public string Name { get; set; }
|
||||
public string Description { get; set; }
|
||||
public Nullable<int> SortOrder { get; set; }
|
||||
public string CreatedBy { get; set; }
|
||||
public Nullable<System.DateTime> CreatedAt { get; set; }
|
||||
public Nullable<System.DateTime> UpdatedAt { get; set; }
|
||||
public bool IsActive { get; set; }
|
||||
public Nullable<int> RoomCount { get; set; }
|
||||
public bool IsDeleted { get; set; }
|
||||
public System.Guid Uuid { get; set; }
|
||||
public Nullable<System.Guid> ParentUuid { get; set; }
|
||||
public Nullable<System.Guid> RegionTypeUuid { get; set; }
|
||||
public Nullable<bool> Gender { get; set; }
|
||||
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
||||
public virtual ICollection<Region> Region1 { get; set; }
|
||||
public virtual Region Region2 { get; set; }
|
||||
public virtual RegionType RegionType { get; set; }
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
||||
public virtual ICollection<Room> Room { get; set; }
|
||||
}
|
||||
}
|
||||
namespace Model
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public partial class RegionAndRoomAndBedSchedule
|
||||
{
|
||||
public int UseType { get; set; }
|
||||
public string Title { get; set; }
|
||||
public string Description { get; set; }
|
||||
public string CreatedBy { get; set; }
|
||||
public Nullable<System.DateTime> CreatedAt { get; set; }
|
||||
public bool IsDeleted { get; set; }
|
||||
public System.Guid Uuid { get; set; }
|
||||
public Nullable<System.Guid> TargetUuid { get; set; }
|
||||
public string GuaDanOrderNo { get; set; }
|
||||
public Nullable<System.DateTime> ScheduleDate { get; set; }
|
||||
public bool IsActive { get; set; }
|
||||
}
|
||||
}
|
||||
namespace Model
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public partial class RegionRoomBed
|
||||
{
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
||||
public RegionRoomBed()
|
||||
{
|
||||
this.GuaDanOrderGuests = new HashSet<GuaDanOrderGuest>();
|
||||
}
|
||||
|
||||
public string Name { get; set; }
|
||||
public bool IsActive { get; set; }
|
||||
public bool Gender { get; set; }
|
||||
public bool IsDeleted { get; set; }
|
||||
public System.Guid Uuid { get; set; }
|
||||
public System.Guid RoomUuid { get; set; }
|
||||
public Nullable<System.Guid> StatusUuid { get; set; }
|
||||
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
||||
public virtual ICollection<GuaDanOrderGuest> GuaDanOrderGuests { get; set; }
|
||||
public virtual RegionRoomBedStatus RegionRoomBedStatus { get; set; }
|
||||
public virtual Room Room { get; set; }
|
||||
}
|
||||
}
|
||||
namespace Model
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public partial class RegionRoomBedStatus
|
||||
{
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
||||
public RegionRoomBedStatus()
|
||||
{
|
||||
this.GuaDanOrderGuests = new HashSet<GuaDanOrderGuest>();
|
||||
this.RegionRoomBeds = new HashSet<RegionRoomBed>();
|
||||
}
|
||||
|
||||
public string Code { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Description { get; set; }
|
||||
public Nullable<int> Category { get; set; }
|
||||
public bool IsDeleted { get; set; }
|
||||
public System.Guid Uuid { get; set; }
|
||||
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
||||
public virtual ICollection<GuaDanOrderGuest> GuaDanOrderGuests { get; set; }
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
||||
public virtual ICollection<RegionRoomBed> RegionRoomBeds { get; set; }
|
||||
}
|
||||
}
|
||||
namespace Model
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public partial class RegionType
|
||||
{
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
||||
public RegionType()
|
||||
{
|
||||
this.Regions = new HashSet<Region>();
|
||||
}
|
||||
|
||||
public string Code { get; set; }
|
||||
public string Name { get; set; }
|
||||
public bool IsActive { get; set; }
|
||||
public Nullable<System.DateTime> CreateAt { get; set; }
|
||||
public bool IsDeleted { get; set; }
|
||||
public System.Guid Uuid { get; set; }
|
||||
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
||||
public virtual ICollection<Region> Regions { get; set; }
|
||||
}
|
||||
}
|
||||
namespace Model
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public partial class Room
|
||||
{
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
||||
public Room()
|
||||
{
|
||||
this.GuaDanOrderGuests = new HashSet<GuaDanOrderGuest>();
|
||||
this.RegionRoomBed = new HashSet<RegionRoomBed>();
|
||||
}
|
||||
|
||||
public string Name { get; set; }
|
||||
public bool Gender { get; set; }
|
||||
public Nullable<int> BedCount { get; set; }
|
||||
public Nullable<bool> IsActive { get; set; }
|
||||
public Nullable<System.DateTime> CreatedAt { get; set; }
|
||||
public Nullable<System.DateTime> UpdatedAt { get; set; }
|
||||
public bool IsDeleted { get; set; }
|
||||
public System.Guid Uuid { get; set; }
|
||||
public System.Guid RegionUuid { get; set; }
|
||||
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
||||
public virtual ICollection<GuaDanOrderGuest> GuaDanOrderGuests { get; set; }
|
||||
public virtual Region Region { get; set; }
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
||||
public virtual ICollection<RegionRoomBed> RegionRoomBed { get; set; }
|
||||
}
|
||||
}
|
||||
namespace Model
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public partial class ShuWen
|
||||
{
|
||||
public int ID { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user