2025-01-02 17:53:38 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace CH.Dal.DbEntity;
|
|
|
|
|
|
|
|
|
|
public partial class Machine
|
|
|
|
|
{
|
|
|
|
|
public long Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Name { get; set; } = null!;
|
|
|
|
|
|
|
|
|
|
public string Address { get; set; } = null!;
|
|
|
|
|
|
|
|
|
|
public bool Status { get; set; }
|
|
|
|
|
|
|
|
|
|
public long? LocationId { get; set; }
|
|
|
|
|
|
|
|
|
|
public long? UserId { get; set; }
|
|
|
|
|
|
2025-01-03 15:38:14 -05:00
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
|
|
|
|
|
|
public DateTime? UpdatedAt { get; set; }
|
|
|
|
|
|
2025-01-02 17:53:38 -05:00
|
|
|
|
public virtual Location? Location { get; set; }
|
|
|
|
|
|
|
|
|
|
public virtual User? User { get; set; }
|
|
|
|
|
}
|