31 lines
1.0 KiB
C#
31 lines
1.0 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;
|
|
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
[Table("RegGiacenze")]
|
|
public class AnagGiacenzeModel
|
|
{
|
|
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int IdxRG { get; set; } = 0;
|
|
public int IdxOdl { get; set; } = 0;
|
|
public string IdentRG { get; set; } = "";
|
|
public string Product { get; set; } = "";
|
|
public string Variety { get; set; } = "";
|
|
public string Supplier { get; set; } = "";
|
|
public string ExtDoc { get; set; } = "";
|
|
public DateTime DateRif { get; set; }
|
|
public double QtyTot { get; set; } = 0;
|
|
public int NumPack { get; set; } = 0;
|
|
public string Notes { get; set; } = "";
|
|
}
|
|
}
|