初始化
This commit is contained in:
27
DAL/New_Models/EcoSetting.cs
Normal file
27
DAL/New_Models/EcoSetting.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user