Files
Web_BLSKafka_Server_Prod/DAL/New_Models/EcoSetting.cs
2025-11-21 08:48:01 +08:00

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; }
}