DD.WellWorkover.Cloud/AsbCloudDb/Model/FileMark.cs

43 lines
1.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Text.Json.Serialization;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace AsbCloudDb.Model
{
[Table("t_file_mark"), Comment("Действия с файлами.")]
public class FileMark
{
[Key]
[Column("id")]
public int Id { get; set; }
[Column("id_mark_type"), Comment("0 - Согласован")]
public int IdMarkType { get; set; }
[Column("date_created"), Comment("Дата совершенного действия")]
public DateTime DateCreated { get; set; }
[Column("id_file"), Comment("id файла")]
public int IdFile { get; set; }
[Column("id_user"), Comment("id пользователя")]
public int IdUser { get; set; }
[Column("comment"), Comment("Комментарий")]
[StringLength(255)]
public string Comment { get; set; }
[Column("is_deleted"), Comment("Помечен ли файл как удаленный")]
public bool IsDeleted { get; set; }
[JsonIgnore]
[ForeignKey(nameof(IdUser))]
public virtual User Author { get; set; }
[JsonIgnore]
[ForeignKey(nameof(IdFile))]
public virtual FileInfo FileInfo { get; set; }
}
}