using Microsoft.EntityFrameworkCore.Metadata.Internal;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace ApiPolo.Models
{
///
/// (Virtual Task) Contiene i campi di CCHIUSA
///
public class ChiusureTable
{
///
[Key]
public string? cccodazi { get; set; }
///
[Key]
public string? cccodice { get; set; }
///
public string? ccdescr { get; set; }
///
public string? ccflfatt { get; set; }
///
public string? ccflrep { get; set; }
///
public string? ccdessup { get; set; }
///
public string? cctipcod { get; set; }
///
public string? ccgruppo { get; set; }
///
[Column(TypeName = "decimal(18, 4)")]
public decimal? ccimpint { get; set; }
///
[Column(TypeName = "decimal(18, 4)")]
public decimal? ccimpman { get; set; }
///
public string? ccserint { get; set; }
///
public string? ccserman { get; set; }
///
[Column(TypeName = "decimal(4, 1)")]
public decimal? ccnumore { get; set; }
///
[Column(TypeName = "decimal(6, 2)")]
public decimal? ccperman { get; set; }
///
[Column(TypeName = "decimal(4, 1)")]
public decimal? corecom { get; set; }
///
public DateTime? codtobso { get; set; }
///
public int? ccrapabi { get; set; }
///
public int? ccrapobb { get; set; }
///
public string? ccriapre { get; set; }
///
public string? ccchiint { get; set; }
}
}