28 lines
524 B
C#
28 lines
524 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace DAL.New_Models;
|
|||
|
|
|
|||
|
|
public partial class EcoSetting
|
|||
|
|
{
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
|
|||
|
|
public string? StartTime { get; set; }
|
|||
|
|
|
|||
|
|
public string? EndTime { get; set; }
|
|||
|
|
|
|||
|
|
public int? HostId { get; set; }
|
|||
|
|
|
|||
|
|
public int? HotelId { get; set; }
|
|||
|
|
|
|||
|
|
public string? RoomNo { get; set; }
|
|||
|
|
|
|||
|
|
public string? CreateTime { get; set; }
|
|||
|
|
|
|||
|
|
public string? AddOrCutDown { get; set; }
|
|||
|
|
|
|||
|
|
public int? ActValue { get; set; }
|
|||
|
|
|
|||
|
|
public bool? IsEnable { get; set; }
|
|||
|
|
}
|