20 lines
362 B
C#
20 lines
362 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DAL.New_Models;
|
|
|
|
public partial class TbSysHotelGroup
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int? ParentId { get; set; }
|
|
|
|
public string? Name { get; set; }
|
|
|
|
public int? Sort { get; set; }
|
|
|
|
public DateTime? LastModifiedTime { get; set; }
|
|
|
|
public bool? IsDeleted { get; set; }
|
|
}
|