25 lines
798 B
C#
25 lines
798 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace GPW.CORE.Data.DbModels
|
|
{
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
public partial class ParetoRegAttModel
|
|
{
|
|
[Key]
|
|
public long RowNum { get; set; } = 0;
|
|
public string nomeComm { get; set; } = "";
|
|
public int idxFaseComm { get; set; } = 0;
|
|
public int idxFase { get; set; } = 0;
|
|
public string nomeProj { get; set; } = "";
|
|
public string nomeFase { get; set; } = "";
|
|
public decimal freq { get; set; } = 0;
|
|
public decimal qty { get; set; } = 0;
|
|
public int tot{ get; set; } = 0;
|
|
}
|
|
}
|