SoftwayWeb/Models/Sbr_ord.cs
2025-01-14 16:38:45 +01:00

38 lines
1.2 KiB
C#

namespace SoftwayWeb.Models
{
public class Sbr_ord
{
public string? Brserial { get; set; }
public string? Brcodcom { get; set; }
public string? Brclifat { get; set; }
public int? Brnumseq { get; set; }
public string? Brcodsed { get; set; }
public DateTime? Brdatcar { get; set; }
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(18, 4)")]
public decimal? Brqtacol { get; set; }
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(18, 4)")]
public decimal? Brqtavol { get; set; }
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(18, 4)")]
public decimal? Brcolprev { get; set; }
public int? Brconspr { get; set; }
public int? Bruovapr { get; set; }
public int? Brcistpr { get; set; }
public string? Brnote { get; set; }
//BRTARTRA,BRAUTIST, CATNOME, CAUDESC
public string? Brtartra { get; set; }
public string? Brautist { get; set; }
//Autista
public string? Catnome { get; set; }
//Mezzo
public string? Caudesc { get; set; }
//non usata
public string? Pisergir { get; set; }
}
}