DD.WellWorkover.Cloud/AsbCloudDb/Model/GTR/WitsStr.cs

15 lines
430 B
C#
Raw Normal View History

2023-03-28 01:05:15 +05:00
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace AsbCloudDb.Model.GTR
{
[Table("t_wits_string"), Comment("таблица данных ГТИ с типом значения string")]
public class WitsStr: WitsBase
{
[Column("value")]
[StringLength(64)]
public string? Value { get; set; }
}
}