Files
mapo-core/MP.Data/DbModels/AnagCountersModel.cs

29 lines
735 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
#nullable disable
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
namespace MP.Data.DbModels
{
[Table("AnagCounters")]
public partial class AnagCountersModel
{
#region Public Properties
[Key, DatabaseGenerated(DatabaseGeneratedOption.None), MaxLength(50)]
public string CntType { get; set; } = "";
[MaxLength(50)]
public string CntCode { get; set; } = "";
public int LastNum { get; set; } = 0;
[MaxLength(250)]
public string Descript { get; set; } = "";
#endregion Public Properties
}
}