27 lines
721 B
C#
27 lines
721 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ApiSoftway.Models
|
|
{
|
|
public class Consegna_m
|
|
{
|
|
[Key]
|
|
public string? Pisergir { get; set; }
|
|
public string? Esercizio { get; set; }
|
|
public int? Numero { get; set; }
|
|
|
|
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(10, 0)")]
|
|
public int? Posseriale { get; set; }
|
|
|
|
[System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(10, 0)")]
|
|
public int? Posnum { get; set; }
|
|
|
|
public string? Posese { get; set; }
|
|
|
|
public DateTime? Data { get; set; }
|
|
|
|
public string? Descmov { get; set; }
|
|
|
|
public string? Cpccchk { get; set; }
|
|
}
|
|
}
|