forked from ddrilling/AsbCloudServer
23 lines
663 B
C#
23 lines
663 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace AsbCloudDb.Model
|
|
{
|
|
#nullable disable
|
|
[Table("t_well_operation_category"), Comment("Справочник операций на скважине")]
|
|
public class WellOperationCategory : IId
|
|
{
|
|
[Key]
|
|
[Column("id")]
|
|
public int Id { get; set; }
|
|
|
|
[Column("name"), Comment("Название категории операции")]
|
|
public string Name { get; set; }
|
|
|
|
[Column("code"), Comment("Код операции")]
|
|
public int Code { get; set; }
|
|
|
|
}
|
|
}
|