45 lines
1.1 KiB
C#
45 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MagMan.Data.Tenant.DbModels
|
|
{
|
|
/// <summary>
|
|
/// Tabella dei grezzi
|
|
/// </summary>
|
|
[Table("MachGroupList")]
|
|
public class MachGroupModel
|
|
{
|
|
[Key, Column("DbId"), DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int MachGroupDbId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Id geometrico Grezzo (barra intera)
|
|
/// </summary>
|
|
[Column("MachGroupId")]
|
|
public int MachGroupId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Proj di appartenenza
|
|
/// </summary>
|
|
public int ProjDbId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Data Start
|
|
/// </summary>
|
|
[Column("DtStart")]
|
|
public DateTime DtStart { get; set; }
|
|
|
|
/// <summary>
|
|
/// Data End
|
|
/// </summary>
|
|
[Column("DtEnd")]
|
|
public DateTime DtEnd { get; set; }
|
|
|
|
}
|
|
}
|